认证页的返回都调转列表页
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
:border="false"
|
:border="false"
|
||||||
:fixed="true"
|
:fixed="true"
|
||||||
:safe-area-inset-top="true"
|
:safe-area-inset-top="true"
|
||||||
@click-left="h5GoBack"
|
@click-left="goListPage"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<tip-bar :title="'温馨提示:服务完成后,平台代收的运费需要提现到您的银行卡账户中,请确保您上传的银行卡信息真实可用。'"></tip-bar>
|
<tip-bar :title="'温馨提示:服务完成后,平台代收的运费需要提现到您的银行卡账户中,请确保您上传的银行卡信息真实可用。'"></tip-bar>
|
||||||
@ -101,7 +101,7 @@
|
|||||||
verifyType: 4
|
verifyType: 4
|
||||||
})
|
})
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.h5GoBack()
|
this.goListPage()
|
||||||
}, 100)
|
}, 100)
|
||||||
console.log('注册', res)
|
console.log('注册', res)
|
||||||
} else {
|
} else {
|
||||||
@ -115,6 +115,11 @@
|
|||||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||||
localStorage.setItem('name', res?.data?.name)
|
localStorage.setItem('name', res?.data?.name)
|
||||||
},
|
},
|
||||||
|
goListPage(){
|
||||||
|
this.goPage('auditList',{
|
||||||
|
token:localStorage.getItem('token')
|
||||||
|
})
|
||||||
|
},
|
||||||
async bankHandler(data) {
|
async bankHandler(data) {
|
||||||
this.form.bankName = ''
|
this.form.bankName = ''
|
||||||
this.form.cardNumber = ''
|
this.form.cardNumber = ''
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
:border="false"
|
:border="false"
|
||||||
:fixed="true"
|
:fixed="true"
|
||||||
:safe-area-inset-top="true"
|
:safe-area-inset-top="true"
|
||||||
@click-left="h5GoBack"
|
@click-left="goListPage"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
||||||
@ -187,7 +187,7 @@
|
|||||||
verifyType: 2
|
verifyType: 2
|
||||||
})
|
})
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.h5GoBack()
|
this.goListPage()
|
||||||
}, 100)
|
}, 100)
|
||||||
}, async getRegisterInfo(data) {
|
}, async getRegisterInfo(data) {
|
||||||
let res = await infoVerifyProgress( data)
|
let res = await infoVerifyProgress( data)
|
||||||
@ -196,7 +196,11 @@
|
|||||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||||
localStorage.setItem('name', res?.data?.name)
|
localStorage.setItem('name', res?.data?.name)
|
||||||
},
|
},
|
||||||
|
goListPage(){
|
||||||
|
this.goPage('auditList',{
|
||||||
|
token:localStorage.getItem('token')
|
||||||
|
})
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
:border="false"
|
:border="false"
|
||||||
:fixed="true"
|
:fixed="true"
|
||||||
:safe-area-inset-top="true"
|
:safe-area-inset-top="true"
|
||||||
@click-left="h5GoBack"
|
@click-left="goListPage"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
||||||
@ -301,7 +301,7 @@
|
|||||||
verifyType: 3
|
verifyType: 3
|
||||||
})
|
})
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.h5GoBack()
|
this.goListPage()
|
||||||
}, 100)
|
}, 100)
|
||||||
},
|
},
|
||||||
async getRegisterInfo(data) {
|
async getRegisterInfo(data) {
|
||||||
@ -375,6 +375,11 @@
|
|||||||
});
|
});
|
||||||
return res;
|
return res;
|
||||||
},
|
},
|
||||||
|
goListPage(){
|
||||||
|
this.goPage('auditList',{
|
||||||
|
token:localStorage.getItem('token')
|
||||||
|
})
|
||||||
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
regionText() {
|
regionText() {
|
||||||
|
|||||||
Reference in New Issue
Block a user