交叉渠道(银保)销售个险产品,分渠道展示险种列表

This commit is contained in:
bai.jinyan
2021-07-22 17:04:35 +08:00
parent 81bbde62c7
commit feb21e41c4
2 changed files with 80 additions and 18 deletions

View File

@@ -426,7 +426,8 @@ export default {
ruleExpression: {},
mainRiskCode: '',
renewal: '-1',
richChildrenFlag: false
richChildrenFlag: false,
isCrossChannel:'0' //是否交叉渠道 1-是 0-否
}
},
mounted() {
@@ -476,6 +477,9 @@ export default {
//构建提交数据、渲染险种
this.chooseProducts = JSON.parse(localStorage.chooseProducts)
this.chooseProducts.forEach((item, index) => {
if (item.isCrossChannel == '1') {
this.isCrossChannel = item.isCrossChannel;
}
if (item.mainRiskCode == 'GFRS_M0006') {
item.isHidden = true
}
@@ -1580,7 +1584,8 @@ export default {
occupationName,
platformType: 'app',
productCode: item.productCode,
medical: JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo')).medical
medical: JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo')).medical,
isCrossChannel:this.isCrossChannel
})
params.trialInfos.push(trialInfo)
})
@@ -1984,7 +1989,8 @@ export default {
orderType: 'RISK_ORDER',
orderDTO: {
orderInfoDTO: {
orderNo: this.$CacheUtils.getLocItem('orderNo')
orderNo: this.$CacheUtils.getLocItem('orderNo'),
productChannel:this.isCrossChannel
},
// appntDTO: {},
insuredDTOs: [insuredDTOItem]