建议书标题修改

This commit is contained in:
lyt
2023-04-06 13:32:38 +08:00
committed by liu.xiaofeng@ebiz-digits.com
parent e804ab7e8c
commit 5f4a54ae5a
10 changed files with 52 additions and 2 deletions

View File

@@ -40,6 +40,12 @@ export default {
} }
}, },
mounted() { mounted() {
this.$jump({
flag: 'navigation',
extra: {
title: '附加险选择列表'
},
})
//获取投保人信息 //获取投保人信息
if (this.$CacheUtils.getLocItem('saleInsuredPersonInfo')) { if (this.$CacheUtils.getLocItem('saleInsuredPersonInfo')) {
this.saleInsuredPersonInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo')) this.saleInsuredPersonInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo'))

View File

@@ -646,6 +646,7 @@ export default {
async init() { async init() {
// 获取是否从建议书过来的 // 获取是否从建议书过来的
let that = this let that = this
this.isFrom = window.localStorage.isFrom
//获取投保人信息 //获取投保人信息
if (this.$CacheUtils.getLocItem('saleInsuredInfo')) { if (this.$CacheUtils.getLocItem('saleInsuredInfo')) {
this.saleInsuredInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredInfo')) this.saleInsuredInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredInfo'))

View File

@@ -24,6 +24,12 @@ export default {
} }
}, },
mounted() { mounted() {
this.$jump({
flag: 'navigation',
extra: {
title: '关于国富'
},
})
document.body.style.backgroundColor = '#fff' document.body.style.backgroundColor = '#fff'
}, },
beforeRouteLeave(to, from, next) { beforeRouteLeave(to, from, next) {

View File

@@ -17,6 +17,12 @@ export default {
}, },
mounted() { mounted() {
document.body.style.backgroundColor = '#fff' document.body.style.backgroundColor = '#fff'
this.$jump({
flag: 'navigation',
extra: {
title: '敬请期待'
},
})
}, },
beforeRouteLeave(to, from, next) { beforeRouteLeave(to, from, next) {
document.body.style.backgroundColor = '' document.body.style.backgroundColor = ''

View File

@@ -83,6 +83,12 @@ export default {
} }
}, },
async mounted() { async mounted() {
this.$jump({
flag: 'navigation',
extra: {
title: '主险选择列表'
},
})
if (localStorage.isFrom == 'sale') { if (localStorage.isFrom == 'sale') {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
getOrderDetail({ orderNo: this.$route.query.orderNo }).then( getOrderDetail({ orderNo: this.$route.query.orderNo }).then(

View File

@@ -138,6 +138,12 @@ export default {
// }) // })
}, },
init() { init() {
this.$jump({
flag: 'navigation',
extra: {
title: '投保人信息'
},
})
// 筛选按钮的点击事件 // 筛选按钮的点击事件
window.appCallBack = this.appCallBack window.appCallBack = this.appCallBack
}, },

View File

@@ -24,7 +24,14 @@ export default {
created() { created() {
this.init() this.init()
}, },
mounted() {}, mounted() {
this.$jump({
flag: 'navigation',
extra: {
title: '条款'
},
})
},
methods: { methods: {
async init() { async init() {
let pdfUrl = localStorage.showCaluePDFUrl let pdfUrl = localStorage.showCaluePDFUrl

View File

@@ -112,6 +112,12 @@ export default {
BreadcrumbNavigator BreadcrumbNavigator
}, },
mounted() { mounted() {
this.$jump({
flag: 'navigation',
extra: {
title: '选择被保险人'
},
})
if (this.$route.query.proposalOrderNo) { if (this.$route.query.proposalOrderNo) {
this.proposalOrderNo = this.$route.query.proposalOrderNo this.proposalOrderNo = this.$route.query.proposalOrderNo
}else if (this.$CacheUtils.getLocItem('proposalNo')) { }else if (this.$CacheUtils.getLocItem('proposalNo')) {

View File

@@ -156,6 +156,12 @@ export default {
this.insured.medical = localStorage.orderNoSocialSecurity === '1' ? '1' : '0' this.insured.medical = localStorage.orderNoSocialSecurity === '1' ? '1' : '0'
} }
this.ageShow = this.insured.age == '-1' ? '0' : this.insured.age this.ageShow = this.insured.age == '-1' ? '0' : this.insured.age
this.$jump({
flag: 'navigation',
extra: {
title: '被保险人信息'
},
})
}, },
//设置被保险人年龄显示 如果this.insured.age为 -1时显示为空不为1时显示为正常输入值 //设置被保险人年龄显示 如果this.insured.age为 -1时显示为空不为1时显示为正常输入值
changeAgeInput(val) { changeAgeInput(val) {

View File

@@ -876,7 +876,7 @@ export default {
// 条款PDF // 条款PDF
async goCaluePDF(riskItem) { async goCaluePDF(riskItem) {
localStorage.showCaluePDFUrl = riskItem.url localStorage.showCaluePDFUrl = riskItem.url
this.$router.push({ path: 'proposal/caluePdf' }) this.$router.push({ path: '/proposal/caluePdf' })
// this.$jump({ // this.$jump({
// flag: 'h5', // flag: 'h5',
// extra: { // extra: {