mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-07 10:06:44 +08:00
GFRS-2215【待完成】重新投保--根据订单状态判断是否进入下一步流程
This commit is contained in:
@@ -269,7 +269,7 @@ export default {
|
||||
if (resData.result === '0') {
|
||||
// 在白名单内
|
||||
if (resData.content && resData.content.length) {
|
||||
this.goUrl(res)
|
||||
this.goUrl(res,order)
|
||||
return
|
||||
} else {
|
||||
window.EWebBridge.webCallAppInJs('face_auth', {
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
name: res.orderDTO.appntDTO.name //姓名
|
||||
}).then((data) => {
|
||||
if (JSON.parse(data).state == '1') {
|
||||
this.goUrl(res)
|
||||
this.goUrl(res,order)
|
||||
} else {
|
||||
return this.$toast('人脸识别,验证失败!')
|
||||
}
|
||||
@@ -288,13 +288,14 @@ export default {
|
||||
this.$toast(resData.resultMessage)
|
||||
}
|
||||
} else {
|
||||
return this.$toast('人脸识别,证件类型不为身份证!')
|
||||
}
|
||||
} else {
|
||||
this.$toast(res.resultMessage)
|
||||
}
|
||||
})
|
||||
},
|
||||
goUrl(res) {
|
||||
goUrl(res,order) {
|
||||
let url
|
||||
//投保人信息返显
|
||||
CacheUtils.setLocItem('orderDetailData', JSON.stringify(res))
|
||||
|
||||
Reference in New Issue
Block a user