From caf6ce2296e2fbc6236716e99c0f8b7a9ed6cd87 Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Mon, 10 Jul 2023 17:59:20 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E6=8B=A9=E4=BA=A7=E5=93=81=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=A2=9E=E5=8A=A0=E5=AD=97=E6=AE=B5isCrossChannel=20?= =?UTF-8?q?=E5=88=A4=E6=96=AD=E6=98=AF=E5=90=A6=E9=80=89=E6=8B=A9=E4=BA=A4?= =?UTF-8?q?=E5=8F=89=E6=B8=A0=E9=81=93=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/common/SelectedProduct.vue | 35 ++++++++++++++++------- 1 file changed, 24 insertions(+), 11 deletions(-) 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()