|
@@ -84,6 +84,7 @@
|
|
|
<el-table-column prop="payTaxesCard" label="纳税人识别号">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="compAddress" label="地址"> </el-table-column>
|
|
|
+ <el-table-column prop="examiner" label="审核人"> </el-table-column>
|
|
|
<el-table-column prop="updateDate" label="更新时间"> </el-table-column>
|
|
|
<el-table-column prop="businessLicenseAddressUrl" label="附件">
|
|
|
<template slot-scope="scope">
|
|
@@ -106,7 +107,7 @@
|
|
|
</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="address" label="审核">
|
|
|
+ <el-table-column prop="address" label="审核" min-width="150">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="medium" type="text" class="record" v-if="scope.row.authenticationStatusKey == 1"
|
|
|
v-hasPermission="
|
|
@@ -308,6 +309,7 @@
|
|
|
adopt(row) {
|
|
|
this.identityAuthenticationInfo.id = row.id
|
|
|
this.identityAuthenticationInfo.flag = 1
|
|
|
+ this.identityAuthenticationInfo.examiner = localStorage.getItem('ws-pf_staffName')
|
|
|
this.$confirm(`确定通过该认证信息?`, '提示', {
|
|
|
confirmButtonText: '通过',
|
|
|
cancelButtonText: '取消',
|
|
@@ -336,6 +338,7 @@
|
|
|
reject(row) {
|
|
|
this.identityAuthenticationInfo.id = row.id
|
|
|
this.identityAuthenticationInfo.flag = 2
|
|
|
+ this.identityAuthenticationInfo.examiner = localStorage.getItem('ws-pf_staffName')
|
|
|
this.$confirm(`确定驳回该认证信息?`, '提示', {
|
|
|
confirmButtonText: '驳回',
|
|
|
cancelButtonText: '取消',
|