|
@@ -57,7 +57,7 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
|
<el-dialog title="认证详情" :visible.sync="showDialog" center width="40%">
|
|
<el-dialog title="认证详情" :visible.sync="showDialog" center width="40%">
|
|
|
- <el-form :model="authInfoDetail" label-width="120px" label-position="right">
|
|
|
|
|
|
|
+ <el-form :model="authInfoDetail" label-width="150px" label-position="right">
|
|
|
<el-form-item label="类型:">
|
|
<el-form-item label="类型:">
|
|
|
<span>
|
|
<span>
|
|
|
<el-tag v-if="authInfoDetail.type=='personal'" type="success">个人</el-tag>
|
|
<el-tag v-if="authInfoDetail.type=='personal'" type="success">个人</el-tag>
|
|
@@ -68,34 +68,64 @@
|
|
|
<el-form-item label="姓名:" v-if="authInfoDetail.type == 'personal'">
|
|
<el-form-item label="姓名:" v-if="authInfoDetail.type == 'personal'">
|
|
|
<span>{{authInfoDetail.realName}}</span>
|
|
<span>{{authInfoDetail.realName}}</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+ <el-form-item label="性别:" v-if="authInfoDetail.type == 'personal'">
|
|
|
|
|
+ <span>{{authInfoDetail.gender}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="身份证号:" v-if="authInfoDetail.type == 'personal'">
|
|
<el-form-item label="身份证号:" v-if="authInfoDetail.type == 'personal'">
|
|
|
- <span>{{authInfoDetail.IDCard}}</span>
|
|
|
|
|
|
|
+ <span>{{authInfoDetail.idCard}}</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="身份证照:" v-if="authInfoDetail.type == 'personal'">
|
|
|
|
|
|
|
+ <el-form-item label="身份证正面照:" v-if="authInfoDetail.type == 'personal'">
|
|
|
<span>
|
|
<span>
|
|
|
<el-image
|
|
<el-image
|
|
|
style="width: 100px;"
|
|
style="width: 100px;"
|
|
|
- :src="authInfoDetail.IDCardPositivePhoto"
|
|
|
|
|
|
|
+ :src="authInfoDetail.idCardPositivePhoto"
|
|
|
fit="scale-down"></el-image>
|
|
fit="scale-down"></el-image>
|
|
|
</span>
|
|
</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
-<!-- <el-form-item label="银行账号:">-->
|
|
|
|
|
-<!-- <span>{{authInfoDetail.bankAccount}}</span>-->
|
|
|
|
|
-<!-- </el-form-item>-->
|
|
|
|
|
|
|
+ <el-form-item label="身份证反面照:" v-if="authInfoDetail.type == 'personal'">
|
|
|
|
|
+ <span>
|
|
|
|
|
+ <el-image
|
|
|
|
|
+ style="width: 100px;"
|
|
|
|
|
+ :src="authInfoDetail.idCardBackPhoto"
|
|
|
|
|
+ fit="scale-down"></el-image>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="身份证截止时间:" v-if="authInfoDetail.type == 'personal'">
|
|
|
|
|
+ <span>{{authInfoDetail.idCardDeadTime}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="地址:">
|
|
<el-form-item label="地址:">
|
|
|
<span>{{authInfoDetail.address}}</span>
|
|
<span>{{authInfoDetail.address}}</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+ <el-form-item label="角色:" v-if="authInfoDetail.type == 'personal'">
|
|
|
|
|
+ <span>{{authInfoDetail.roleList}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="申请时间:">
|
|
<el-form-item label="申请时间:">
|
|
|
<span>{{reformTime(new Date(authInfoDetail.applyTime))}}</span>
|
|
<span>{{reformTime(new Date(authInfoDetail.applyTime))}}</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
- <el-form-item label="企业名称:" v-if="authInfoDetail.type == 'enterprise'">
|
|
|
|
|
- <span>{{authInfoDetail.enterpriseName}}</span>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="法人姓名:" v-if="authInfoDetail.type == 'enterprise'">
|
|
|
|
|
- <span>{{authInfoDetail.legalPersonName}}</span>
|
|
|
|
|
|
|
+<!-- <el-form-item label="企业名称:" v-if="authInfoDetail.type == 'enterprise'">-->
|
|
|
|
|
+<!-- <span>{{authInfoDetail.enterpriseName}}</span>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
+<!-- <el-form-item label="法人姓名:" v-if="authInfoDetail.type == 'enterprise'">-->
|
|
|
|
|
+<!-- <span>{{authInfoDetail.legalPersonName}}</span>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
+<!-- <el-form-item label="营业执照:" v-if="authInfoDetail.type == 'enterprise'">-->
|
|
|
|
|
+<!-- <span>-->
|
|
|
|
|
+<!-- <el-image-->
|
|
|
|
|
+<!-- style="width: 100px;"-->
|
|
|
|
|
+<!-- :src="authInfoDetail.businessLicensePhoto"-->
|
|
|
|
|
+<!-- fit="scale-down"></el-image>-->
|
|
|
|
|
+<!-- </span>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
+<!-- <el-form-item label="统一信用代码:" v-if="authInfoDetail.type == 'enterprise'">-->
|
|
|
|
|
+<!-- <span>{{authInfoDetail.unifiedSocialCreditCode}}</span>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="企业名称:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>{{authInfoDetail.evaluationAgencyName}}</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="营业执照:" v-if="authInfoDetail.type == 'enterprise'">
|
|
|
|
|
|
|
+ <el-form-item label="营业执照:" v-if="authInfoDetail.type == 'agency'">
|
|
|
<span>
|
|
<span>
|
|
|
<el-image
|
|
<el-image
|
|
|
style="width: 100px;"
|
|
style="width: 100px;"
|
|
@@ -103,29 +133,58 @@
|
|
|
fit="scale-down"></el-image>
|
|
fit="scale-down"></el-image>
|
|
|
</span>
|
|
</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="统一信用代码:" v-if="authInfoDetail.type == 'enterprise'">
|
|
|
|
|
- <span>{{authInfoDetail.unifiedSocialCreditCode}}</span>
|
|
|
|
|
|
|
+ <el-form-item label="企业地址:">
|
|
|
|
|
+ <span>{{authInfoDetail.address}}</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
- <el-form-item label="机构名称:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
- <span>{{authInfoDetail.evaluationAgencyName}}</span>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="机构能力:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
- <span v-for="item in authInfoDetail.evaluationAgencyAbilityList"> <el-tag>{{item}}</el-tag>
|
|
|
|
|
|
|
+ <el-form-item label="企业Logo:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>
|
|
|
|
|
+ <el-image
|
|
|
|
|
+ style="width: 100px;"
|
|
|
|
|
+ :src="authInfoDetail.agencyPhoto"
|
|
|
|
|
+ fit="scale-down"></el-image>
|
|
|
</span>
|
|
</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="机构资源:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
- <span v-for="item in authInfoDetail.evaluationAgencyResourceList"> <el-tag>{{item.type}} ( {{item.name}} ) : [总数:{{item.totalNum}} ,可用数量:{{item.availableNum}}]</el-tag>
|
|
|
|
|
|
|
+ <el-form-item label="法人姓名:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>{{authInfoDetail.legalPersonName}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="法人性别:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>{{authInfoDetail.gender}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="法人身份证号:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>{{authInfoDetail.idCardNum}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="法人身份证正面照:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>
|
|
|
|
|
+ <el-image
|
|
|
|
|
+ style="width: 100px;"
|
|
|
|
|
+ :src="authInfoDetail.idCardPositivePhoto"
|
|
|
|
|
+ fit="scale-down"></el-image>
|
|
|
</span>
|
|
</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="机构Logo:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
|
|
+ <el-form-item label="法人身份证反面照:" v-if="authInfoDetail.type == 'agency'">
|
|
|
<span>
|
|
<span>
|
|
|
<el-image
|
|
<el-image
|
|
|
style="width: 100px;"
|
|
style="width: 100px;"
|
|
|
- :src="authInfoDetail.agencyPhoto"
|
|
|
|
|
|
|
+ :src="authInfoDetail.idCardBackPhoto"
|
|
|
fit="scale-down"></el-image>
|
|
fit="scale-down"></el-image>
|
|
|
</span>
|
|
</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+ <el-form-item label="身份证截止时间:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>{{authInfoDetail.idCardDeadTime}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="企业角色:" v-if="authInfoDetail.type == 'agency'">
|
|
|
|
|
+ <span>{{authInfoDetail.roleList}}</span>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+<!-- <el-form-item label="机构能力:" v-if="authInfoDetail.type == 'agency'">-->
|
|
|
|
|
+<!-- <span v-for="item in authInfoDetail.evaluationAgencyAbilityList"> <el-tag>{{item}}</el-tag>-->
|
|
|
|
|
+<!-- </span>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
+<!-- <el-form-item label="机构资源:" v-if="authInfoDetail.type == 'agency'">-->
|
|
|
|
|
+<!-- <span v-for="item in authInfoDetail.evaluationAgencyResourceList"> <el-tag>{{item.type}} ( {{item.name}} ) : [总数:{{item.totalNum}} ,可用数量:{{item.availableNum}}]</el-tag>-->
|
|
|
|
|
+<!-- </span>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="info" size="mini" @click="hideAuthDialog()">返回</el-button>
|
|
<el-button type="info" size="mini" @click="hideAuthDialog()">返回</el-button>
|
|
@@ -179,25 +238,34 @@
|
|
|
handledAuthList: [],
|
|
handledAuthList: [],
|
|
|
authInfoDetail: {
|
|
authInfoDetail: {
|
|
|
userId: '',
|
|
userId: '',
|
|
|
|
|
+ realName: "",
|
|
|
|
|
+ applyTime: "",
|
|
|
|
|
+ checkTime: "",
|
|
|
|
|
+ explain: "",
|
|
|
|
|
+ gender: "",
|
|
|
|
|
+ idCard: "",
|
|
|
|
|
+ idCardBackPhoto: "",
|
|
|
|
|
+ idCardDeadTime: "",
|
|
|
|
|
+ idCardPositivePhoto: "",
|
|
|
|
|
+ isAuthentication: 0,
|
|
|
|
|
+ isDeleted: 0,
|
|
|
|
|
+ roleList: [],
|
|
|
|
|
+ address: "",
|
|
|
|
|
+
|
|
|
type: '',
|
|
type: '',
|
|
|
- realName: '',
|
|
|
|
|
- IDCard: '',
|
|
|
|
|
- IDCardPositivePhoto: '',
|
|
|
|
|
bankAccount: '',
|
|
bankAccount: '',
|
|
|
- address: '',
|
|
|
|
|
- applyTime: '',
|
|
|
|
|
-
|
|
|
|
|
enterpriseName: '',
|
|
enterpriseName: '',
|
|
|
legalPersonName: '',
|
|
legalPersonName: '',
|
|
|
businessLicensePhoto: '',
|
|
businessLicensePhoto: '',
|
|
|
unifiedSocialCreditCode: '',
|
|
unifiedSocialCreditCode: '',
|
|
|
|
|
|
|
|
- evaluationAgencyName: '',
|
|
|
|
|
|
|
+ agencyPhoto: "",
|
|
|
|
|
+ evaluationAgencyName: "",
|
|
|
|
|
+ expireTime: '',
|
|
|
|
|
+ idCardNum: "",
|
|
|
evaluationAgencyAbilityList: [],
|
|
evaluationAgencyAbilityList: [],
|
|
|
evaluationAgencyResourceList: [],
|
|
evaluationAgencyResourceList: [],
|
|
|
- agencyPhoto: '',
|
|
|
|
|
updateTime: '',
|
|
updateTime: '',
|
|
|
- expireTime: ''
|
|
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
@@ -276,6 +344,7 @@
|
|
|
this.hideLoading()
|
|
this.hideLoading()
|
|
|
this.getHandlingAuthList()
|
|
this.getHandlingAuthList()
|
|
|
notify('success', '驳回成功')
|
|
notify('success', '驳回成功')
|
|
|
|
|
+ this.hideAuthDialog()
|
|
|
console.log(res)
|
|
console.log(res)
|
|
|
},
|
|
},
|
|
|
handleAuthenticationRejectFail (error) {
|
|
handleAuthenticationRejectFail (error) {
|
|
@@ -321,11 +390,18 @@
|
|
|
this.hideLoading()
|
|
this.hideLoading()
|
|
|
console.log(res)
|
|
console.log(res)
|
|
|
this.authInfoDetail.realName = res.realName
|
|
this.authInfoDetail.realName = res.realName
|
|
|
- this.authInfoDetail.IDCard = res.idcard
|
|
|
|
|
- this.authInfoDetail.IDCardPositivePhoto = res.idCardPositivePhotoi
|
|
|
|
|
- this.authInfoDetail.bankAccount = res.bankAccount
|
|
|
|
|
- this.authInfoDetail.address = res.address
|
|
|
|
|
this.authInfoDetail.applyTime = res.applyTime
|
|
this.authInfoDetail.applyTime = res.applyTime
|
|
|
|
|
+ this.authInfoDetail.checkTime = res.checkTime
|
|
|
|
|
+ this.authInfoDetail.explain = res.explain
|
|
|
|
|
+ this.authInfoDetail.gender = res.gender
|
|
|
|
|
+ this.authInfoDetail.idCard = res.idCard
|
|
|
|
|
+ this.authInfoDetail.idCardBackPhoto = res.idCardBackPhoto
|
|
|
|
|
+ this.authInfoDetail.idCardDeadTime = res.idCardDeadTime
|
|
|
|
|
+ this.authInfoDetail.idCardPositivePhoto = res.idCardPositivePhoto
|
|
|
|
|
+ this.authInfoDetail.isAuthentication = res.isAuthentication
|
|
|
|
|
+ this.authInfoDetail.isDeleted = res.isDeleted
|
|
|
|
|
+ this.authInfoDetail.roleList = res.roleList
|
|
|
|
|
+ this.authInfoDetail.address = res.address
|
|
|
this.showAuthDialog()
|
|
this.showAuthDialog()
|
|
|
console.log(res)
|
|
console.log(res)
|
|
|
|
|
|
|
@@ -352,13 +428,25 @@
|
|
|
getCurrentAgencyAuthInfoSuccess (res) {
|
|
getCurrentAgencyAuthInfoSuccess (res) {
|
|
|
this.hideLoading()
|
|
this.hideLoading()
|
|
|
this.authInfoDetail.bankAccount = res.bankAccount
|
|
this.authInfoDetail.bankAccount = res.bankAccount
|
|
|
|
|
+ this.authInfoDetail.legalPersonName = res.legalPersonName
|
|
|
|
|
+ this.authInfoDetail.businessLicensePhoto = res.businessLicensePhoto
|
|
|
this.authInfoDetail.address = res.address
|
|
this.authInfoDetail.address = res.address
|
|
|
this.authInfoDetail.applyTime = res.applyTime
|
|
this.authInfoDetail.applyTime = res.applyTime
|
|
|
- this.authInfoDetail.evaluationAgencyName = res.evaluationAgencyName
|
|
|
|
|
- this.authInfoDetail.evaluationAgencyAbilityList = res.evaluationAgencyAbilityList
|
|
|
|
|
- this.authInfoDetail.evaluationAgencyResourceList = res.evaluationAgencyResourceList
|
|
|
|
|
- this.authInfoDetail.agencyPhoto = res.agencyPhoto
|
|
|
|
|
- this.authInfoDetail.updateTime = res.updateTime
|
|
|
|
|
|
|
+ this.authInfoDetail.evaluationAgencyName = res.evaluationAgencyName
|
|
|
|
|
+ this.authInfoDetail.evaluationAgencyAbilityList = res.evaluationAgencyAbilityList
|
|
|
|
|
+ this.authInfoDetail.evaluationAgencyResourceList = res.evaluationAgencyResourceList
|
|
|
|
|
+ this.authInfoDetail.agencyPhoto = res.agencyPhoto
|
|
|
|
|
+ this.authInfoDetail.updateTime = res.updateTime
|
|
|
|
|
+ this.authInfoDetail.checkTime = res.checkTime
|
|
|
|
|
+ this.authInfoDetail.explain = res.explain
|
|
|
|
|
+ this.authInfoDetail.gender = res.gender
|
|
|
|
|
+ this.authInfoDetail.idCardNum = res.idCardNum
|
|
|
|
|
+ this.authInfoDetail.idCardBackPhoto = res.idCardBackPhoto
|
|
|
|
|
+ this.authInfoDetail.idCardDeadTime = res.idCardDeadTime
|
|
|
|
|
+ this.authInfoDetail.idCardPositivePhoto = res.idCardPositivePhoto
|
|
|
|
|
+ this.authInfoDetail.isAuthentication = res.isAuthentication
|
|
|
|
|
+ this.authInfoDetail.isDeleted = res.isDeleted
|
|
|
|
|
+ this.authInfoDetail.roleList = res.roleList
|
|
|
this.showAuthDialog()
|
|
this.showAuthDialog()
|
|
|
},
|
|
},
|
|
|
getCurrentAgencyAuthInfoFail (error) {
|
|
getCurrentAgencyAuthInfoFail (error) {
|