基础信息相关界面修改

master
anthonywj 2 years ago
parent 5304d521d1
commit d2758f1374

@ -33,9 +33,8 @@
<el-table-column type="index" label="序号" width="50"></el-table-column> <el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="企业名称" prop="companyName" width="160" show-overflow-tooltip></el-table-column> <el-table-column label="企业名称" prop="companyName" width="160" show-overflow-tooltip></el-table-column>
<el-table-column label="统一社会信用号" prop="creditNum" width="160"></el-table-column> <el-table-column label="统一社会信用号" prop="creditNum" width="160"></el-table-column>
<el-table-column label="注册地址" prop="registerAddress" :show-overflow-tooltip="true" width="180"></el-table-column> <el-table-column label="注册地址" prop="registerAddress" :show-overflow-tooltip="true"
width="180"></el-table-column>
<el-table-column label="审核状态" prop="checkStatus" width="120"> <el-table-column label="审核状态" prop="checkStatus" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="(scope.row.checkStatus) | statusFilterType"> <el-tag :type="(scope.row.checkStatus) | statusFilterType">
@ -43,8 +42,6 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="资质证书" prop="certStatus" width="120"> <el-table-column label="资质证书" prop="certStatus" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
@ -60,7 +57,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" width="120"> <el-table-column label="操作" width="120" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
@ -101,13 +98,9 @@
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
> >
</el-dialog>
</el-dialog>
</div> </div>
</template> </template>
@ -146,7 +139,6 @@ export default {
editType: 0, //0:1 editType: 0, //0:1
fromOptions: [], fromOptions: [],
}; };
@ -164,7 +156,7 @@ export default {
}; };
return statusMap[status]; return statusMap[status];
}, },
statusFilterName(status) { statusFilterName(status) {
const statusMap = { const statusMap = {
@ -196,7 +188,7 @@ export default {
}, },
getList() { getList() {
//this.loading = true; //this.loading = true;
}, },
onSubmit() { onSubmit() {
this.getList(); this.getList();
@ -217,12 +209,11 @@ export default {
this.filterQuery.page = val.page; this.filterQuery.page = val.page;
this.getList(); this.getList();
}, },
closeDialog() { closeDialog() {
this.supCompanyVisible = false; this.supCompanyVisible = false;
}, },
registrationDialog(row) { registrationDialog(row) {
if (row.auditStatus == 6 || row.auditStatus == 3 || row.auditStatus == 4) { if (row.auditStatus == 6 || row.auditStatus == 3 || row.auditStatus == 4) {
@ -236,7 +227,7 @@ export default {
this.inputProudtQuery = row; this.inputProudtQuery = row;
this.registrationVisible = true; this.registrationVisible = true;
}, },
getRegistrationList() { getRegistrationList() {
this.registrationLoading = true; this.registrationLoading = true;
getRegistrationList(this.registrationQuery) getRegistrationList(this.registrationQuery)
@ -256,9 +247,7 @@ export default {
} }
}, },
components: { components: {}
}
, ,
created() { created() {

@ -359,9 +359,9 @@
<div v-if="customerVisible"> <div v-if="customerVisible">
<el-dialog <el-dialog
title="系统用户" title="企业用户"
:visible.sync="customerVisible" :visible.sync="customerVisible"
width="60%" width="80%"
append-to-body append-to-body
:modal-append-to-body="false" :modal-append-to-body="false"
:close-on-click-modal="false" :close-on-click-modal="false"

Loading…
Cancel
Save