From d63e8e2b2c8a805c849ac3729ccb85383a2e85f4 Mon Sep 17 00:00:00 2001 From: "bai.jinyan" Date: Mon, 12 Apr 2021 18:36:42 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-2215=E3=80=90=E5=BE=85=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E3=80=91=E9=87=8D=E6=96=B0=E6=8A=95=E4=BF=9D--=E6=A0=B9?= =?UTF-8?q?=E6=8D=AE=E8=AE=A2=E5=8D=95=E7=8A=B6=E6=80=81=E5=88=A4=E6=96=AD?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E8=BF=9B=E5=85=A5=E4=B8=8B=E4=B8=80=E6=AD=A5?= =?UTF-8?q?=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/insureAgain/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/ebiz/insureAgain/index.vue b/src/views/ebiz/insureAgain/index.vue index e953b4f86..a30242596 100644 --- a/src/views/ebiz/insureAgain/index.vue +++ b/src/views/ebiz/insureAgain/index.vue @@ -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))