Procházet zdrojové kódy

首页:选中优化

panyong před 3 roky
rodič
revize
1378950bf5
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  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')