diff --git a/src/views/ebiz/product/HomeProduct.vue b/src/views/ebiz/product/HomeProduct.vue index 0d60fd6b4..ce448d3f1 100644 --- a/src/views/ebiz/product/HomeProduct.vue +++ b/src/views/ebiz/product/HomeProduct.vue @@ -224,7 +224,7 @@ export default { const result = await getAgentInfo({}) if (result.result === '0') { // 内外勤判断 - this.isInner = /^N{1}/.test(result.branchType) // 判断是否内勤 + this.isInner = /^N{1}/.test(result.branchType) || /^S/.test(result.branchType) || /^T/.test(result.branchType) // 判断是否内勤 this.isGoodStart = result.showTemplateKmh === 'KMH' // 判断是否开门红 this.isPersonalInsu = this.personalInsu.indexOf(result.branchType) > -1 // 判断是否个险渠道 this.organizationImgUrl = this.isGoodStart?this.organizationKmhImgUrl:this.organizationNormalImgUrl @@ -320,16 +320,16 @@ export default { th.sticky-col:nth-of-type(1), td.sticky-col:nth-of-type(1) { - width: 50px; + width: 40px; position: sticky; left: 0; } -th.sticky-col:nth-of-type(2), +/*th.sticky-col:nth-of-type(2), td.sticky-col:nth-of-type(2) { position: sticky; left: 50px; -} +}*/ .home-product-container { background-color: #ffffff; @@ -452,6 +452,6 @@ i { } .org-name { - width: 6em; + width: 5em; }