feat(新增运营平台和业务平台登录,新增对应企业展示)

master
dongzeliang 2023-11-13 14:12:58 +08:00 committed by 031026
parent d6a09e43a4
commit de69805eec
6 changed files with 411 additions and 13 deletions

View File

@ -2,10 +2,10 @@
```bash ```bash
# 克隆项目 # 克隆项目
git clone https://gitee.com/y_project/MuYu-Vue git clone https://gitea.qinmian.online/ruoyi/cloud-ui.git
# 进入项目目录 # 进入项目目录
cd muyu-ui cd cloud-ui
# 安装依赖 # 安装依赖
npm install npm install

View File

@ -0,0 +1,45 @@
import request from '@/utils/request'
// 查询company列表
export function listCompany(queryParams) {
console.log("data是什么",queryParams)
return request({
url: '/company/company/list',
method: 'get',
params: queryParams
})
}
// 查询company详细
export function getCompany(id) {
return request({
url: '/company/company/' + id,
method: 'get'
})
}
// 新增company
export function addCompany(data) {
return request({
url: '/company/company',
method: 'post',
data: data
})
}
// 修改company
export function updateCompany(data) {
return request({
url: '/company/company',
method: 'put',
data: data
})
}
// 删除company
export function delCompany(id) {
return request({
url: '/company/company/' + id,
method: 'delete'
})
}

View File

@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询参数列表 // 查询参数列表
export function listConfig(query) { export function listConfig(query) {
return request({ return request({
url: '/system/config/plus/list', url: '/system/config/list',
method: 'get', method: 'get',
params: query params: query
}) })
@ -12,7 +12,7 @@ export function listConfig(query) {
// 查询参数详细 // 查询参数详细
export function getConfig(configId) { export function getConfig(configId) {
return request({ return request({
url: '/system/config/plus/' + configId, url: '/system/config/' + configId,
method: 'get' method: 'get'
}) })
} }
@ -20,7 +20,7 @@ export function getConfig(configId) {
// 根据参数键名查询参数值 // 根据参数键名查询参数值
export function getConfigKey(configKey) { export function getConfigKey(configKey) {
return request({ return request({
url: '/system/config/plus/configKey/' + configKey, url: '/system/config/configKey/' + configKey,
method: 'get' method: 'get'
}) })
} }
@ -28,7 +28,7 @@ export function getConfigKey(configKey) {
// 新增参数配置 // 新增参数配置
export function addConfig(data) { export function addConfig(data) {
return request({ return request({
url: '/system/config/plus', url: '/system/config',
method: 'post', method: 'post',
data: data data: data
}) })
@ -37,7 +37,7 @@ export function addConfig(data) {
// 修改参数配置 // 修改参数配置
export function updateConfig(data) { export function updateConfig(data) {
return request({ return request({
url: '/system/config/plus', url: '/system/config',
method: 'put', method: 'put',
data: data data: data
}) })
@ -46,7 +46,7 @@ export function updateConfig(data) {
// 删除参数配置 // 删除参数配置
export function delConfig(configId) { export function delConfig(configId) {
return request({ return request({
url: '/system/config/plus/' + configId, url: '/system/config/' + configId,
method: 'delete' method: 'delete'
}) })
} }
@ -54,7 +54,7 @@ export function delConfig(configId) {
// 刷新参数缓存 // 刷新参数缓存
export function refreshCache() { export function refreshCache() {
return request({ return request({
url: '/system/config/plus/refreshCache', url: '/system/config/refreshCache',
method: 'delete' method: 'delete'
}) })
} }

View File

@ -73,7 +73,6 @@ service.interceptors.request.use(config => {
// 响应拦截器 // 响应拦截器
service.interceptors.response.use(res => { service.interceptors.response.use(res => {
debugger
// 未设置状态码则默认成功状态 // 未设置状态码则默认成功状态
const code = res.data.code || 200; const code = res.data.code || 200;
// 获取错误信息 // 获取错误信息

View File

@ -0,0 +1,357 @@
<template>
<div class="app-container">
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['company:company:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['company:company:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['company:company:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="companyList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键" align="center" prop="id" />
<el-table-column label="企业名称" align="center" prop="companyName" />
<el-table-column label="法定代表人" align="center" prop="legalRepresentative" />
<el-table-column label="企业成立时间" align="center" prop="companyTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.companyTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="业务范围" align="center" prop="sphereOfBusiness" />
<el-table-column label="注册地址" align="center" prop="registeredAddress" />
<el-table-column label="企业联系电话" align="center" prop="companyPhone" />
<el-table-column label="公司邮箱" align="center" prop="companyMailbox" />
<el-table-column label="公司营业执照" align="center" prop="businessLicense" width="100">
<template slot-scope="scope">
<image-preview :src="scope.row.businessLicense" :width="50" :height="50"/>
</template>
</el-table-column>
<el-table-column label="税务登记证" align="center" prop="taxRegistrationCertificate" width="100">
<template slot-scope="scope">
<image-preview :src="scope.row.taxRegistrationCertificate" :width="50" :height="50"/>
</template>
</el-table-column>
<el-table-column label="企业状态" align="center" prop="companyStatus">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.companyStatus"/>
</template>
</el-table-column>
<el-table-column label="企业入驻时间" align="center" prop="enterTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.enterTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="是否认证" align="center" prop="isAuthentication">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.isAuthentication"/>
</template>
</el-table-column>
<el-table-column label="认证时间" align="center" prop="authenticationTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.authenticationTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="服务等级" align="center" prop="serviceLevel" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['company:company:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['company:company:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改company对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="企业名称" prop="companyName">
<el-input v-model="form.companyName" placeholder="请输入企业名称" />
</el-form-item>
<el-form-item label="法定代表人" prop="legalRepresentative">
<el-input v-model="form.legalRepresentative" placeholder="请输入法定代表人" />
</el-form-item>
<el-form-item label="企业成立时间" prop="companyTime">
<el-date-picker clearable
v-model="form.companyTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择企业成立时间">
</el-date-picker>
</el-form-item>
<el-form-item label="业务范围" prop="sphereOfBusiness">
<el-input v-model="form.sphereOfBusiness" placeholder="请输入业务范围" />
</el-form-item>
<el-form-item label="注册地址" prop="registeredAddress">
<el-input v-model="form.registeredAddress" placeholder="请输入注册地址" />
</el-form-item>
<el-form-item label="企业联系电话" prop="companyPhone">
<el-input v-model="form.companyPhone" placeholder="请输入企业联系电话" />
</el-form-item>
<el-form-item label="公司邮箱" prop="companyMailbox">
<el-input v-model="form.companyMailbox" placeholder="请输入公司邮箱" />
</el-form-item>
<el-form-item label="公司营业执照" prop="businessLicense">
<image-upload v-model="form.businessLicense"/>
</el-form-item>
<el-form-item label="税务登记证" prop="taxRegistrationCertificate">
<image-upload v-model="form.taxRegistrationCertificate"/>
</el-form-item>
<el-form-item label="企业状态" prop="companyStatus">
<el-radio-group v-model="form.companyStatus">
<el-radio
v-for="dict in dict.type.sys_yes_no"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="企业入驻时间" prop="enterTime">
<el-date-picker clearable
v-model="form.enterTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择企业入驻时间">
</el-date-picker>
</el-form-item>
<el-form-item label="是否认证" prop="isAuthentication">
<el-radio-group v-model="form.isAuthentication">
<el-radio
v-for="dict in dict.type.sys_yes_no"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="认证时间" prop="authenticationTime">
<el-date-picker clearable
v-model="form.authenticationTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择认证时间">
</el-date-picker>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listCompany, getCompany, delCompany, addCompany, updateCompany } from "@/api/company/company";
import {getInfo} from "@/api/login";
export default {
name: "Company",
dicts: ['sys_yes_no'],
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// company
companyList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
deptName:"",
roleKey:""
},
//
form: {},
//
rules: {
},
};
},
created() {
this.getList();
},
methods: {
/** 查询company列表 */
getList(){
getInfo().then(res=>{
console.log(res)
this.queryParams.deptName=res.data.user.dept.deptName
res.data.user.roles.forEach(role=>{
if (role.roleKey) {
this.queryParams.roleKey = role.roleKey; // roleKeyqueryParams
}
})
this.loading = true;
console.log("this.queryParams是什么===",this.queryParams)
listCompany(this.queryParams).then(response => {
this.companyList = response.data.rows;
this.total =response.data.total;
this.loading = false;
});
})
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
companyName: null,
legalRepresentative: null,
companyTime: null,
sphereOfBusiness: null,
registeredAddress: null,
companyPhone: null,
companyMailbox: null,
businessLicense: null,
taxRegistrationCertificate: null,
companyStatus: null,
enterTime: null,
isAuthentication: null,
authenticationTime: null,
serviceLevel: null,
remark: null,
foundName: null,
foundTime: null,
updateName: null,
updateTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加company";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getCompany(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改company";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateCompany(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addCompany(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除company编号为"' + ids + '"的数据项?').then(function() {
return delCompany(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('company/company/export', {
...this.queryParams
}, `company_${new Date().getTime()}.xlsx`)
}
}
};
</script>

View File

@ -200,9 +200,6 @@ export default {
form: {}, form: {},
// //
rules: { rules: {
parentId: [
{required: true, message: "上级部门不能为空", trigger: "blur"}
],
deptName: [ deptName: [
{required: true, message: "部门名称不能为空", trigger: "blur"} {required: true, message: "部门名称不能为空", trigger: "blur"}
], ],