关于金掌桂规则前置需求 提示语样式修改

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-09-21 16:09:21 +08:00
parent f4fdc05f95
commit 23278094ea

View File

@@ -265,6 +265,12 @@
>下一步</van-button >下一步</van-button
> >
</div> </div>
<van-dialog v-model="thisdialogshow" title="提示">
<div style="padding: 20px;font-size: 14px;">
<div style="margin-bottom: 10px;letter-spacing: 1px;color: #E9332E;">校验失败原因</div>
<div v-for="(item,index) in thisdialogcontent" style="margin-bottom: 10px;letter-spacing: 1px;">{{index+1}}{{item}}</div>
</div>
</van-dialog>
</div> </div>
</template> </template>
@@ -280,6 +286,8 @@ import utils from '../../../assets/js/business-common'
export default { export default {
data() { data() {
return { return {
thisdialogshow: false,
thisdialogcontent: '',
isNotify: false, //是否有异常的健康告知 isNotify: false, //是否有异常的健康告知
isNotifyInsured: false, isNotifyInsured: false,
// 订单号 // 订单号
@@ -1068,12 +1076,19 @@ export default {
}, },
}) })
} else { } else {
Dialog.confirm({ if(res.resultMessage.indexOf('Engine')!= -1){
title: '提示', this.thisdialogshow = true
message: res.resultMessage, // let thisdialogcontent = '【Engine】投保人电子邮箱已被其他投保人使用哦请确认并重新录入如有疑问请拨打4006946688进行咨询【Engine】被保人与投保人关系需为本人、配偶、子女、父母人工审核中请您耐心等待哦~'
confirmButtonColor:'#FF0000', this.thisdialogcontent = res.resultMessage.split('【Engine】')
showCancelButton:false this.thisdialogcontent.splice(0,1)
}) }else{
Dialog.confirm({
title: '提示',
message: res.resultMessage,
confirmButtonColor:'#FF0000',
showCancelButton:false
})
}
} }
}) })
}, },
@@ -1295,4 +1310,7 @@ export default {
.redRadioCheckbox { .redRadioCheckbox {
overflow: hidden; overflow: hidden;
} }
/deep/ .van-field__label{
width: 50vw;
}
</style> </style>