diff --git a/src/views/ebiz/common/SelectedProduct.vue b/src/views/ebiz/common/SelectedProduct.vue index d9c3ba32e..fa260eba4 100644 --- a/src/views/ebiz/common/SelectedProduct.vue +++ b/src/views/ebiz/common/SelectedProduct.vue @@ -148,6 +148,7 @@ export default { noCheckedUrl: require('@/assets/images/kmh/no_checked.png'), proposalOrderNo:'', renovate:'',//刷新子组件 + isCrossChannel: 0, // 是否选择交叉渠道列表 0-否 1-是 } }, components: { @@ -180,18 +181,30 @@ export default { } //建议书--右上角为退出流程键(到建议书列表)×,并清除浏览记录 if (localStorage.isFrom == 'proposal') { - // eslint-disable-next-line no-undef - setTimeout(() => { - EWebBridge.webCallAppInJs('webview_right_button', { - btns: [ - { - img: this.$assetsUrl + 'images/del-close.png', - route: { flag: '', extra: {} } - } - ] - }) - }, 500) + // eslint-disable-next-line no-undef + setTimeout(() => { + EWebBridge.webCallAppInJs('webview_right_button', { + btns: [ + { + img: this.$assetsUrl + 'images/del-close.png', + route: { flag: '', extra: {} } + } + ] + }) + }, 500) + getDetail({ + orderNo: this.$route.query.proposalOrderNo + }).then(res => { + if (res.result == '0') { + this.recommendType = res.content[0].recmdDTO?res.content[0].recmdDTO.recommendType:''; + if (this.recommendType == '02' || this.recommendType == '11') { + // 电投 团险渠道产品 均为交叉渠道销售 + this.isCrossChannel = '1'; + } + } + }) } + window.appCallBack = this.appCallBack document.body.style.backgroundColor = '#fff' this.getProductList()