【开门红需求】首页开门红元素配置功能开发 --提交人:白金岩

This commit is contained in:
bai.jinyan
2021-11-10 15:55:30 +08:00
committed by liyuetong
parent 7a9e4e765f
commit 87ca98df12

View File

@@ -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;
}
</style>