mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 15:06:45 +08:00
GFRS-2223 【重新投保】-保额展示及待支付订单取消人脸识别---提交人:白金岩
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
<InfoCell v-else label="">{{ item2.dutyName }}</InfoCell>
|
<InfoCell v-else label="">{{ item2.dutyName }}</InfoCell>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<InfoCell label="保额(万元)">{{ item.amt }}</InfoCell>
|
<InfoCell label="保额(元)">{{ item.amt | moneyFormat }}</InfoCell>
|
||||||
<InfoCell>
|
<InfoCell>
|
||||||
<template #cellLabel>
|
<template #cellLabel>
|
||||||
<span style="font-weight: bold">保费(元)</span>
|
<span style="font-weight: bold">保费(元)</span>
|
||||||
|
|||||||
@@ -292,6 +292,11 @@ export default {
|
|||||||
}, 100)
|
}, 100)
|
||||||
getReAppntPolicy({ policyNo: order.policyNo }).then(async (res) => {
|
getReAppntPolicy({ policyNo: order.policyNo }).then(async (res) => {
|
||||||
if (res.result == 0) {
|
if (res.result == 0) {
|
||||||
|
// 待支付订单 不需再次人脸识别
|
||||||
|
if (order.newOrderStatus == '02') {
|
||||||
|
this.goUrl(res, order)
|
||||||
|
return
|
||||||
|
}else {
|
||||||
this.orderInfo.sex = res.orderDTO.appntDTO.sex
|
this.orderInfo.sex = res.orderDTO.appntDTO.sex
|
||||||
if (res.orderDTO.appntDTO.idType == '1') {
|
if (res.orderDTO.appntDTO.idType == '1') {
|
||||||
// 白名单校验
|
// 白名单校验
|
||||||
@@ -325,6 +330,7 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
return this.$toast('人脸识别,证件类型不为身份证!')
|
return this.$toast('人脸识别,证件类型不为身份证!')
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$toast(res.resultMessage)
|
this.$toast(res.resultMessage)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user