|
|
|
@ -448,6 +448,7 @@ |
|
|
|
|
<img src="/assets/ability/applyFail.png" alt="" /> |
|
|
|
|
审核不通过 |
|
|
|
|
</div> |
|
|
|
|
<div class="editbtn" v-show="userForm.status == 3" @click="goedit">去修改</div> |
|
|
|
|
<div class="contentBox" v-show="userForm.status == 2"> |
|
|
|
|
<div class="applySuccessAll"> |
|
|
|
|
<img src="/assets/ability/applysuccess.png" alt="" /> |
|
|
|
@ -477,6 +478,7 @@ export default { |
|
|
|
|
components: { imageUpload }, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
flag: false, |
|
|
|
|
active: 0, |
|
|
|
|
// 实名认证 |
|
|
|
|
certifform: {}, |
|
|
|
@ -570,6 +572,11 @@ export default { |
|
|
|
|
this.getCloudAllList() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 去修改 |
|
|
|
|
goedit() { |
|
|
|
|
this.userForm.status = null |
|
|
|
|
this.active =1 |
|
|
|
|
}, |
|
|
|
|
// 提交审核 |
|
|
|
|
saveInfo() { |
|
|
|
|
if (this.userForm.status == 1) return this.$message.warning('正在审核,请勿重复提交') |
|
|
|
@ -613,6 +620,7 @@ export default { |
|
|
|
|
} else if (res.personalInfo.status === 2) { |
|
|
|
|
this.active = 6 |
|
|
|
|
} else { |
|
|
|
|
this.active = 6 |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -968,6 +976,12 @@ export default { |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped> |
|
|
|
|
.editbtn { |
|
|
|
|
margin:auto; |
|
|
|
|
color: #0066EB; |
|
|
|
|
text-align: center; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
.userAbility { |
|
|
|
|
background: #f2f3f7; |
|
|
|
|
padding-bottom: 40px; |
|
|
|
|