Pārlūkot izejas kodu

首页:选中优化

panyong 3 gadi atpakaļ
vecāks
revīzija
1378950bf5
1 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  1. 5 1
      htmldev/cps/src/App.vue

+ 5 - 1
htmldev/cps/src/App.vue

@@ -36,10 +36,14 @@ export default {
   watch: {
     '$route.name': {
       handler: function (newVal) {
-        this.active = newVal
         if (!newVal) {
           return
         }
+        if (['MarketingReturn', 'MarketingMake'].findIndex(item => item === newVal) > -1) {
+          this.active = 'MarketingSave'
+        } else {
+          this.active = newVal
+        }
         // 为中转页的时候不调用
         if (!this.$store.getters['common/isInit'] && newVal !== 'PaymentCode' && newVal !== 'ShareMiddle') {
           this.$store.dispatch('common/getUserInfo')