diff --git a/src/views/ebiz/common/AddRiskList.vue b/src/views/ebiz/common/AddRiskList.vue index 07a323e6b..cec66e479 100644 --- a/src/views/ebiz/common/AddRiskList.vue +++ b/src/views/ebiz/common/AddRiskList.vue @@ -40,6 +40,12 @@ export default { } }, mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '附加险选择列表' + }, + }) //获取投保人信息 if (this.$CacheUtils.getLocItem('saleInsuredPersonInfo')) { this.saleInsuredPersonInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo')) diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index ec0624059..14dc5a186 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -556,6 +556,12 @@ export default { } }, mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '保费计算' + }, + }) getAgentInfo({}).then(res => { // branchType N1、1代表个险渠道 和 N5、5 代表中介渠道,N代表内勤 if (res.branchType == 'N1' || res.branchType == '1') { diff --git a/src/views/ebiz/common/CompanyIntroduce.vue b/src/views/ebiz/common/CompanyIntroduce.vue index e9ec0497e..7447d8314 100644 --- a/src/views/ebiz/common/CompanyIntroduce.vue +++ b/src/views/ebiz/common/CompanyIntroduce.vue @@ -24,6 +24,12 @@ export default { } }, mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '关于国富' + }, + }) document.body.style.backgroundColor = '#fff' }, beforeRouteLeave(to, from, next) { diff --git a/src/views/ebiz/common/Defalut.vue b/src/views/ebiz/common/Defalut.vue index 77557b7ad..b53992aa0 100644 --- a/src/views/ebiz/common/Defalut.vue +++ b/src/views/ebiz/common/Defalut.vue @@ -17,6 +17,12 @@ export default { }, mounted() { document.body.style.backgroundColor = '#fff' + this.$jump({ + flag: 'navigation', + extra: { + title: '敬请期待' + }, + }) }, beforeRouteLeave(to, from, next) { document.body.style.backgroundColor = '' diff --git a/src/views/ebiz/common/MainRiskList.vue b/src/views/ebiz/common/MainRiskList.vue index ff1a20166..a4c23d9ef 100644 --- a/src/views/ebiz/common/MainRiskList.vue +++ b/src/views/ebiz/common/MainRiskList.vue @@ -83,6 +83,12 @@ export default { } }, async mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '主险选择列表' + }, + }) if (localStorage.isFrom == 'sale') { return new Promise((resolve, reject) => { getOrderDetail({ orderNo: this.$CacheUtils.getLocItem('orderNo') }).then( diff --git a/src/views/ebiz/proposal/Appnt.vue b/src/views/ebiz/proposal/Appnt.vue index fc1f2e97f..df71a6d0e 100644 --- a/src/views/ebiz/proposal/Appnt.vue +++ b/src/views/ebiz/proposal/Appnt.vue @@ -138,6 +138,12 @@ export default { // }) }, init() { + this.$jump({ + flag: 'navigation', + extra: { + title: '投保人信息' + }, + }) // 筛选按钮的点击事件 window.appCallBack = this.appCallBack }, diff --git a/src/views/ebiz/proposal/CaluePDF.vue b/src/views/ebiz/proposal/CaluePDF.vue index 2bab75878..4ee530244 100644 --- a/src/views/ebiz/proposal/CaluePDF.vue +++ b/src/views/ebiz/proposal/CaluePDF.vue @@ -24,7 +24,14 @@ export default { created() { this.init() }, - mounted() {}, + mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '条款' + }, + }) + }, methods: { async init() { let pdfUrl = localStorage.showCaluePDFUrl diff --git a/src/views/ebiz/proposal/ChooseInsuredPerson.vue b/src/views/ebiz/proposal/ChooseInsuredPerson.vue index e6f4177ac..b14854e3d 100644 --- a/src/views/ebiz/proposal/ChooseInsuredPerson.vue +++ b/src/views/ebiz/proposal/ChooseInsuredPerson.vue @@ -112,6 +112,12 @@ export default { BreadcrumbNavigator }, mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '选择被保险人' + }, + }) if (this.$route.query.proposalOrderNo) { this.proposalOrderNo = this.$route.query.proposalOrderNo }else if (this.$CacheUtils.getLocItem('proposalNo')) { diff --git a/src/views/ebiz/proposal/InsuredPerson.vue b/src/views/ebiz/proposal/InsuredPerson.vue index c061073aa..8629af768 100644 --- a/src/views/ebiz/proposal/InsuredPerson.vue +++ b/src/views/ebiz/proposal/InsuredPerson.vue @@ -157,6 +157,12 @@ export default { this.insured.medical = localStorage.orderNoSocialSecurity === '1' ? '1' : '0' } this.ageShow = this.insured.age == '-1' ? '0' : this.insured.age + this.$jump({ + flag: 'navigation', + extra: { + title: '被保险人信息' + }, + }) }, //设置被保险人年龄显示 如果this.insured.age为 -1时显示为空,不为1时显示为正常输入值 changeAgeInput(val) { diff --git a/src/views/ebiz/proposal/ProposalInfo.vue b/src/views/ebiz/proposal/ProposalInfo.vue index 37e89b175..899f0b669 100644 --- a/src/views/ebiz/proposal/ProposalInfo.vue +++ b/src/views/ebiz/proposal/ProposalInfo.vue @@ -407,6 +407,12 @@ export default { }, }, async mounted() { + this.$jump({ + flag: 'navigation', + extra: { + title: '建议书预览' + }, + }) setTimeout(() => { // eslint-disable-next-line no-undef EWebBridge.webCallAppInJs('webview_left_button', { @@ -847,7 +853,7 @@ export default { // 条款PDF async goCaluePDF(riskItem) { localStorage.showCaluePDFUrl = riskItem.url - this.$router.push({ path: 'proposal/caluePdf' }) + this.$router.push({ path: '/proposal/caluePdf' }) // this.$jump({ // flag: 'h5', // extra: {