Commit f4bdbfbf authored by dcy's avatar dcy

注册会员,修改或审核后从新调取列表接口

parent ed229cc8
......@@ -163,7 +163,7 @@
<el-button type="primary" @click="idCardAuditFn(3)">审核不通过</el-button>
<el-button @click="attestationShow = false">取 消</el-button>
</div>
<div v-if="IdDetails.status === 2" style="text-align: center;margin-top: 20px;">
<div v-if="IdDetails.status === 2 || IdDetails.status === 3" style="text-align: center;margin-top: 20px;">
<el-button type="primary" @click="setMemberUserUpdateIdCard">修 改</el-button>
<el-button @click="attestationShow = false">取 消</el-button>
</div>
......@@ -194,7 +194,7 @@
<el-form-item label="审核状态">{{getDictDatas(DICT_TYPE.AUDIT_STATUS)[enterpriseFrom.status].label}}</el-form-item>
<el-form-item label="审核时间">{{parseTime(enterpriseFrom.auditTime)}}</el-form-item>
</el-form>
<div v-if="enterpriseFrom.status === 0" style="text-align: center;margin-top: 20px;">
<div v-if="enterpriseFrom.status === 0 || enterpriseFrom.status === 3" style="text-align: center;margin-top: 20px;">
<el-button type="primary" @click="certificateVerificationFn(2)">审核通过</el-button>
<el-button type="primary" @click="certificateVerificationFn(3)">审核不通过</el-button>
<el-button @click="attestationShow = false">取 消</el-button>
......@@ -472,6 +472,7 @@ export default {
}
memberUserAuditIdCard(p).then(r => {
if(r.code === 0){
this.getList()
this.getIdentityDetails()
}
})
......@@ -488,6 +489,7 @@ export default {
}
memberUserAuditEnterprise(p).then(r => {
if(r.code === 0){
this.getList()
this.getEnterpriseFn();
}
})
......@@ -508,6 +510,7 @@ export default {
if(this.IdDetails.status === 3){
this.getIdentityDetails()
}
this.getList()
this.$message.success('修改成功');
}
})
......@@ -530,6 +533,7 @@ export default {
if(this.enterpriseFrom.status === 3){
this.getEnterpriseFn();
}
this.getList()
this.$message.success('修改成功');
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment