电子投保流程中页面顶部导航条重新封装 并去掉各个页面重新设置是否展示相关页签的逻辑

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-06-28 13:29:40 +08:00
parent e7b738e9cd
commit 37561f5440
12 changed files with 19 additions and 64 deletions

View File

@@ -105,7 +105,7 @@ export default {
pageItem: '风险测评',
urlStr: '/sale/answerPage',
tabClass: '',
show:this.$store.getters.getAnswerType,
show:false,
imgCheckedUrl: this.$assetsUrl + 'images/kmh/fx1.png',
imgNoCheckedUrl: this.$assetsUrl + 'images/kmh/fx2.png'
},
@@ -114,7 +114,7 @@ export default {
pageItem: '风险测评结果',
urlStr: '/sale/answerSuccess',
tabClass: '',
show:this.$store.getters.getAnswerType,
show:false,
imgCheckedUrl: this.$assetsUrl + 'images/kmh/fxjg1.png',
imgNoCheckedUrl: this.$assetsUrl + 'images/kmh/fxjg2.png'
},
@@ -175,6 +175,18 @@ export default {
})
}
}
if(res.orderDTO.riskEvaluationDTO){
if(res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint == 1){
this.pageTitle.forEach(item=>{
if(item.pageNo == 6){
item.show = true
}
if(item.pageNo == 7){
item.show = true
}
})
}
}
}
})
this.selectTab()