From 23278094ea2a403d519b2f0b129cc10c5d2240a5 Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Thu, 21 Sep 2023 16:09:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E4=BA=8E=E9=87=91=E6=8E=8C=E6=A1=82?= =?UTF-8?q?=E8=A7=84=E5=88=99=E5=89=8D=E7=BD=AE=E9=9C=80=E6=B1=82=20?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E8=AF=AD=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/AttachmentManagement.vue | 30 ++++++++++++++++---- 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/views/ebiz/sale/AttachmentManagement.vue b/src/views/ebiz/sale/AttachmentManagement.vue index 84c23de98..6564ca855 100644 --- a/src/views/ebiz/sale/AttachmentManagement.vue +++ b/src/views/ebiz/sale/AttachmentManagement.vue @@ -265,6 +265,12 @@ >下一步 + +
+
校验失败原因:
+
{{index+1}}:{{item}}
+
+
@@ -280,6 +286,8 @@ import utils from '../../../assets/js/business-common' export default { data() { return { + thisdialogshow: false, + thisdialogcontent: '', isNotify: false, //是否有异常的健康告知 isNotifyInsured: false, // 订单号 @@ -1068,12 +1076,19 @@ export default { }, }) } else { - Dialog.confirm({ - title: '提示', - message: res.resultMessage, - confirmButtonColor:'#FF0000', - showCancelButton:false - }) + if(res.resultMessage.indexOf('Engine')!= -1){ + this.thisdialogshow = true + // let thisdialogcontent = '【Engine】投保人电子邮箱已被其他投保人使用哦~请确认并重新录入,如有疑问请拨打4006946688进行咨询【Engine】被保人与投保人关系需为:本人、配偶、子女、父母,人工审核中,请您耐心等待哦~' + this.thisdialogcontent = res.resultMessage.split('【Engine】') + this.thisdialogcontent.splice(0,1) + }else{ + Dialog.confirm({ + title: '提示', + message: res.resultMessage, + confirmButtonColor:'#FF0000', + showCancelButton:false + }) + } } }) }, @@ -1295,4 +1310,7 @@ export default { .redRadioCheckbox { overflow: hidden; } + /deep/ .van-field__label{ + width: 50vw; + }