mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 08:46:43 +08:00
订单列表点击编辑按钮如果是开门红产品先做银行卡授权校验
This commit is contained in:
@@ -447,7 +447,7 @@ export default {
|
|||||||
this.loadMore()
|
this.loadMore()
|
||||||
},
|
},
|
||||||
//投保单详情
|
//投保单详情
|
||||||
goDetail(order) {
|
async goDetail(order) {
|
||||||
let thisToken = this.$CacheUtils.getLocItem('token')
|
let thisToken = this.$CacheUtils.getLocItem('token')
|
||||||
window.localStorage.clear()
|
window.localStorage.clear()
|
||||||
this.$CacheUtils.setLocItem('token', thisToken)
|
this.$CacheUtils.setLocItem('token', thisToken)
|
||||||
@@ -475,7 +475,35 @@ export default {
|
|||||||
}else if(orderStatus == '37'){//受益人保存成功, 跳到告知信息--
|
}else if(orderStatus == '37'){//受益人保存成功, 跳到告知信息--
|
||||||
url = '/sale/NotifyingMessage?edit=1&orderNo='+orderNo
|
url = '/sale/NotifyingMessage?edit=1&orderNo='+orderNo
|
||||||
}else if(orderStatus == '38'){ //账户信息保存成功, 跳到附件管理--
|
}else if(orderStatus == '38'){ //账户信息保存成功, 跳到附件管理--
|
||||||
|
if(order.orderInfoDTO.activeType == 'KMH') {
|
||||||
|
let params = {
|
||||||
|
orderNo: order.orderInfoDTO.orderNo
|
||||||
|
}
|
||||||
|
this.$toast.loading({
|
||||||
|
duration: 0, // 持续展示 toast
|
||||||
|
forbidClick: true, // 禁用背景点击
|
||||||
|
loadingType: 'spinner',
|
||||||
|
message: '加载中……',
|
||||||
|
})
|
||||||
|
await getBankCardSignState(params).then(res => {
|
||||||
|
this.$toast.clear()
|
||||||
|
if(res.result == 0) {
|
||||||
|
if(res.content.needSign == '0' || res.content.needSign == null) {
|
||||||
|
if(res.content.signState == '0' || res.content.signState == '2') {
|
||||||
|
url = '/sale/AttachmentManagement?edit=1&orderNo='+orderNo
|
||||||
|
} else {
|
||||||
|
url = '/sale/AccountInformation?edit=1&orderNo='+orderNo
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
url = '/sale/AccountInformation?edit=1&orderNo='+orderNo
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$toast(res.resultMessage)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
url = '/sale/AttachmentManagement?edit=1&orderNo='+orderNo
|
url = '/sale/AttachmentManagement?edit=1&orderNo='+orderNo
|
||||||
|
}
|
||||||
}else if(orderStatus == '39'){ //险种信息保存成功, 跳到已选产品列表
|
}else if(orderStatus == '39'){ //险种信息保存成功, 跳到已选产品列表
|
||||||
url = '/common/selectedProduct?edit=1&orderNo='+orderNo
|
url = '/common/selectedProduct?edit=1&orderNo='+orderNo
|
||||||
}else if(orderStatus == '40'){//告知信息保存成功, 跳到风险测评--
|
}else if(orderStatus == '40'){//告知信息保存成功, 跳到风险测评--
|
||||||
|
|||||||
Reference in New Issue
Block a user