GFRS-2223 【重新投保】-保额展示及待支付订单取消人脸识别---提交人:白金岩

This commit is contained in:
bai.jinyan
2021-05-28 09:55:32 +08:00
parent cc0c168e02
commit 159bf6c5de
2 changed files with 35 additions and 29 deletions

View File

@@ -22,7 +22,7 @@
<InfoCell v-else label="">{{ item2.dutyName }}</InfoCell>
</div>
</div>
<InfoCell label="保额(元)">{{ item.amt }}</InfoCell>
<InfoCell label="保额(元)">{{ item.amt | moneyFormat }}</InfoCell>
<InfoCell>
<template #cellLabel>
<span style="font-weight: bold">保费()</span>

View File

@@ -292,6 +292,11 @@ export default {
}, 100)
getReAppntPolicy({ policyNo: order.policyNo }).then(async (res) => {
if (res.result == 0) {
// 待支付订单 不需再次人脸识别
if (order.newOrderStatus == '02') {
this.goUrl(res, order)
return
}else {
this.orderInfo.sex = res.orderDTO.appntDTO.sex
if (res.orderDTO.appntDTO.idType == '1') {
// 白名单校验
@@ -325,6 +330,7 @@ export default {
} else {
return this.$toast('人脸识别,证件类型不为身份证!')
}
}
} else {
this.$toast(res.resultMessage)
}