Browse Source

计算器-页面标题

panyong 3 years ago
parent
commit
f11c88eb17

+ 1 - 0
htmldev/loan/src/views/loan/calculator/index.vue

@@ -367,6 +367,7 @@ export default {
       this.columns5 = loanConfig.payType
       this.defaultIndex5 = 0
     }
+    this.$refreshTitle('房贷计算器')
     this.$route.meta.isUseCache = false
   },
   methods: {

+ 1 - 0
htmldev/loan/src/views/loan/index/index.vue

@@ -58,6 +58,7 @@ export default {
         this.noticeArr = JSON.parse(JSON.stringify(this.noticeArrBridge))
       })
     }
+    this.$refreshTitle('贷款')
     this.$route.meta.isUseCache = false
   },
   methods: {

+ 4 - 0
htmldev/loan/src/views/loan/media/index.vue

@@ -24,6 +24,10 @@ export default {
   created () {
     this.fetchBannerDetail()
   },
+  async mounted () {
+    await this.$nextTick()
+    this.$refreshTitle('贷款')
+  },
   methods: {
     // 获取用户分享权限
     fetchBannerDetail () {

+ 4 - 0
htmldev/loan/src/views/loan/recommend/index.vue

@@ -23,6 +23,10 @@ export default {
       return this.$store.state.loan.recommendedProduct
     }
   },
+  async mounted () {
+    await this.$nextTick()
+    this.$refreshTitle('贷款')
+  },
   methods: {
     funJump (item) {
       this.$router.push({ name: 'loanExplain', params: { orderProductId: item.id } })