diff --git a/src/views/ebiz/sale/SignatureConfirmation.vue b/src/views/ebiz/sale/SignatureConfirmation.vue index 4db8c9594..1f99d75d1 100644 --- a/src/views/ebiz/sale/SignatureConfirmation.vue +++ b/src/views/ebiz/sale/SignatureConfirmation.vue @@ -219,11 +219,11 @@ -
+
- 下一步 + 下一步
@@ -282,6 +282,7 @@ export default { operaFlag: null, encyCustomerMobile: null, sid: null, + isVideoUrl:'', //人脸识别认证次数 faceAuthCount: { appnt: 0, @@ -924,6 +925,7 @@ export default { }) this.videoShow = true this.isVideo = true + this.isVideoUrl = 'goUrl' } else { let that = this let path = '' @@ -980,21 +982,45 @@ export default { }) }, insuredUrl() { - let that = this - let path = '' - if (that.insuredSign[0].documentStatus == 0) { - path = 'insuranceInformation' - } else { - path = 'SignatureOfElectronic' - } - that.$jump({ - flag: 'h5', - extra: { - url: location.origin + '/#/sale/' + path, - }, - routerInfo: { - path: '/sale/' + path, - }, + this.$toast.loading({ + // 持续展示 toast + duration: 0, + // 禁用背景点击s + forbidClick: true, + loadingType: 'spinner', + message: '获取信息中……', + }) + getAgentInfo({}).then((res) => { + console.log(res) + if ((res.branchType == 'N1' || res.branchType == '1') && !this.isVideo) { + this.$jump({ + flag: 'navigation', + extra: { + title: '防范销售误导', + hiddenRight: '1', + }, + }) + this.videoShow = true + this.isVideo = true + this.isVideoUrl = 'insuredUrl' + } else { + let that = this + let path = '' + if (that.insuredSign[0].documentStatus == 0) { + path = 'insuranceInformation' + } else { + path = 'SignatureOfElectronic' + } + that.$jump({ + flag: 'h5', + extra: { + url: location.origin + '/#/sale/' + path, + }, + routerInfo: { + path: '/sale/' + path, + }, + }) + } }) }, toTest() {},