fix
This commit is contained in:
parent
d50dfb1900
commit
98fff8fa80
@ -154,13 +154,12 @@ export default {
|
|||||||
realName: this.name,
|
realName: this.name,
|
||||||
video: this.video,
|
video: this.video,
|
||||||
realIDImgA: this.fileList[0]?.url,
|
realIDImgA: this.fileList[0]?.url,
|
||||||
realIDImgB: this.fileList2[0].url
|
realIDImgB: this.fileList2[0]?.url
|
||||||
})
|
})
|
||||||
this.checkFdd().then((res) => {
|
this.checkFdd().then((res) => {
|
||||||
if (!res) return this.$common.msgToast("法大大验证未通过")
|
if (!res) return this.$common.msgToast("法大大验证未通过")
|
||||||
})
|
})
|
||||||
if (!this.checked.length) return this.$common.msgToast("请阅读并勾选协议");
|
if (!this.checked.length) return this.$common.msgToast("请阅读并勾选协议");
|
||||||
if (!this.checked.length) return this.$common.msgToast("请阅读并勾选协议");
|
|
||||||
if (!this.name) return this.$common.msgToast("请输入姓名");
|
if (!this.name) return this.$common.msgToast("请输入姓名");
|
||||||
if (!this.num) return this.$common.msgToast("请输入身份证号");
|
if (!this.num) return this.$common.msgToast("请输入身份证号");
|
||||||
if (!this.fileList.length) return this.$common.msgToast("请上传身份证人面像");
|
if (!this.fileList.length) return this.$common.msgToast("请上传身份证人面像");
|
||||||
@ -295,7 +294,7 @@ export default {
|
|||||||
checkFdd() {
|
checkFdd() {
|
||||||
return this.$api.login.checkFdd().then((res) => {
|
return this.$api.login.checkFdd().then((res) => {
|
||||||
if (res.status === 0) {
|
if (res.status === 0) {
|
||||||
this.isFddSuccess = true
|
this.isFddSuccess = res.data.isVerify
|
||||||
return res.data.isVerify
|
return res.data.isVerify
|
||||||
} else {
|
} else {
|
||||||
this.$common.msgToast(res.msg)
|
this.$common.msgToast(res.msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user