企业注册审核页面优化

master
schry 2 years ago
parent 29b7d34147
commit 959e84c6aa

@ -17,8 +17,8 @@
<el-form-item label="审核状态" class="query-form-item">
<el-select v-model="filterQuery.checkStatus" style="width: 90%" placeholder="请选择审核状态" clearable>
<el-option label="未审核" value="3"></el-option>
<el-option label="已审核" value="1"></el-option>
<el-option label="未通过" value="2"></el-option>
<el-option label="已通过" value="1"></el-option>
<el-option label="已拒绝" value="2"></el-option>
</el-select>
</el-form-item>
</el-col>
@ -68,9 +68,13 @@
width="230"
></el-table-column>
<el-table-column label="审核状态" prop="checkType" width="80">
<template slot-scope="scope">
<span>{{ checkFlag[scope.row.checkStatus] }}</span>
<template slot-scope="scope" >
<!-- <span>{{ checkFlag[scope.row.checkStatus] }}</span>-->
<el-tag :type="(scope.row.checkStatus) | statusFilterType">
{{ checkFlag[scope.row.checkStatus] }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="企业类型" prop="bussinessStatus">
<template slot-scope="scope">
@ -116,14 +120,28 @@
<el-table-column label="操作" width="60px" fixed="right">
<template slot-scope="scope">
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- :disabled="scope.row.checkType == 1"-->
<!-- @click.native.stop="checkDialog(scope.row)"-->
<!-- >审核-->
<!-- </el-button>-->
<el-button
type="text"
size="small"
:disabled="scope.row.checkType == 1"
v-if="scope.row.checkStatus == 0 || scope.row.checkStatus == 3"
@click.native.stop="checkDialog(scope.row)"
>审核
</el-button
>
</el-button>
<el-button
type="text"
size="small"
v-if="scope.row.checkStatus == 1 || scope.row.checkStatus == 2"
@click.native.stop="checkDialog(scope.row)"
>详情
</el-button>
<!-- <el-button
type="text"
@ -265,7 +283,8 @@
</el-dialog>
<el-dialog
title="新企业审核"
:title="formMap[formName]"
:visible.sync="centerDialogVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
@ -523,6 +542,13 @@ import draggable from "vuedraggable";
export default {
data() {
return {
formName: 1,
formMap: {
1: "注册企业详情",
2: "注册企业审核",
},
editType: 0,
editProductType: 0,
certTotal: 0,
details:false,
imgList:[],
@ -800,6 +826,11 @@ export default {
});
},
checkDialog(row) {
if (row.checkStatus == 1) {
this.formName = 1;
} else {
this.formName = 2;
}
this.check=row.checkStatus;
this.rId=row.id;
this.rowData=row;
@ -865,7 +896,7 @@ export default {
type: "success",
message: "审核成功!",
});
this.centerDialogVisible = false;
this.Refresh();
}
})
}).catch(() => {

Loading…
Cancel
Save