【关于网销部在销管系统增加合作渠道代理人相关】添加非个险渠道的产品(鑫享年终身保险),branchType== 6 为网销渠道

This commit is contained in:
liyuetong
2021-12-20 13:52:48 +08:00
parent cf5db9bf01
commit ef5d693499
2 changed files with 15 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 436 KiB

View File

@@ -42,12 +42,19 @@
</div> </div>
<div class="home-product-pcenter"> <div class="home-product-pcenter">
<div class="pcenter-list mr20 mb10 ml15"> <div class="pcenter-list mr20 mb10 ml15">
<div class="pcenter-item text-center"> <template v-if="branchType != '6'">
<img src="../../../assets/images/home_cp_1.png" style="width: 100%;" @click="goDetail('GFRSPRO_M0002')" /> <div class="pcenter-item text-center">
</div> <img src="../../../assets/images/home_cp_1.png" style="width: 100%;" @click="goDetail('GFRSPRO_M0002')" />
<div class="pcenter-item text-center"> </div>
<img src="../../../assets/images/home_cp_2.png" style="width: 100%;" @click="goDetail('GFRSPRO_M0035')" /> <div class="pcenter-item text-center">
</div> <img src="../../../assets/images/home_cp_2.png" style="width: 100%;" @click="goDetail('GFRSPRO_M0035')" />
</div>
</template>
<template v-else-if="branchType == '6'">
<div class="pcenter-item text-center">
<img src="../../../assets/images/home_cp_3.png" style="width: 100%;" @click="goDetail('GFRSPRO_M0036')" />
</div>
</template>
</div> </div>
</div> </div>
</div> </div>
@@ -142,6 +149,7 @@ export default {
}, },
data() { data() {
return { return {
branchType:'',
idMoreDataShow: false, idMoreDataShow: false,
isTableDataLoad: false, isTableDataLoad: false,
performance, performance,
@@ -225,6 +233,7 @@ export default {
if (result.result === '0') { if (result.result === '0') {
// 内外勤判断 // 内外勤判断
this.isInner = /^N{1}/.test(result.branchType) || /^S/.test(result.branchType) || /^T/.test(result.branchType) // 判断是否内勤 this.isInner = /^N{1}/.test(result.branchType) || /^S/.test(result.branchType) || /^T/.test(result.branchType) // 判断是否内勤
this.branchType = result.branchType //6 网销渠道
this.isGoodStart = result.showTemplateKmh === 'KMH'? '1':'2' // 判断是否开门红 1-开门红 2-否 this.isGoodStart = result.showTemplateKmh === 'KMH'? '1':'2' // 判断是否开门红 1-开门红 2-否
this.isPersonalInsu = this.personalInsu.indexOf(result.branchType) > -1 // 判断是否个险渠道 this.isPersonalInsu = this.personalInsu.indexOf(result.branchType) > -1 // 判断是否个险渠道
this.organizationImgUrl = this.isGoodStart =='1'?this.organizationKmhImgUrl:this.organizationNormalImgUrl this.organizationImgUrl = this.isGoodStart =='1'?this.organizationKmhImgUrl:this.organizationNormalImgUrl