From 5f4a54ae5a75b83cf71c9643ae234412c0d345cf Mon Sep 17 00:00:00 2001 From: lyt Date: Thu, 6 Apr 2023 13:32:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=BA=E8=AE=AE=E4=B9=A6=E6=A0=87=E9=A2=98?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/common/AddRiskList.vue | 6 ++++++ src/views/ebiz/common/CalculatePremium.vue | 1 + src/views/ebiz/common/CompanyIntroduce.vue | 6 ++++++ src/views/ebiz/common/Defalut.vue | 6 ++++++ src/views/ebiz/common/MainRiskList.vue | 6 ++++++ src/views/ebiz/proposal/Appnt.vue | 6 ++++++ src/views/ebiz/proposal/CaluePDF.vue | 9 ++++++++- src/views/ebiz/proposal/ChooseInsuredPerson.vue | 6 ++++++ src/views/ebiz/proposal/InsuredPerson.vue | 6 ++++++ src/views/ebiz/proposal/ProposalInfo.vue | 2 +- 10 files changed, 52 insertions(+), 2 deletions(-) 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 9a253e230..35e931d69 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -646,6 +646,7 @@ export default { async init() { // 获取是否从建议书过来的 let that = this + this.isFrom = window.localStorage.isFrom //获取投保人信息 if (this.$CacheUtils.getLocItem('saleInsuredInfo')) { this.saleInsuredInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredInfo')) 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 6ff5e3784..b2475a460 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.$route.query.orderNo }).then( diff --git a/src/views/ebiz/proposal/Appnt.vue b/src/views/ebiz/proposal/Appnt.vue index bd3a17564..5f4229461 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 66f9e4920..9cc7d9e61 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 85d842039..3dd3f58e9 100644 --- a/src/views/ebiz/proposal/InsuredPerson.vue +++ b/src/views/ebiz/proposal/InsuredPerson.vue @@ -156,6 +156,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 b43c276bc..b1066a66d 100644 --- a/src/views/ebiz/proposal/ProposalInfo.vue +++ b/src/views/ebiz/proposal/ProposalInfo.vue @@ -876,7 +876,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: {