Explorar o código

cps:分享赚钱代码优化

panyong %!s(int64=3) %!d(string=hai) anos
pai
achega
7726ab6688
Modificáronse 2 ficheiros con 14 adicións e 11 borrados
  1. 6 10
      htmldev/cps/src/App.vue
  2. 8 1
      htmldev/cps/src/store/modules/common.js

+ 6 - 10
htmldev/cps/src/App.vue

@@ -35,19 +35,15 @@ export default {
     '$route.name': {
       handler: function (newVal) {
         this.active = newVal
+        // 为中转页的时候不调用
+        if (!this.$store.getters['common/isInit'] && newVal !== 'PaymentCode' && newVal !== 'ShareMiddle') {
+          this.$store.dispatch('common/getUserInfo')
+          this.$store.dispatch('common/getOrdertype')
+          this.$store.commit('common/UPDATE_ISINIT', true)
+        }
       },
       immediate: true
     }
-  },
-  async created () {
-    const { name } = this.$route
-    console.log(111)
-    // 为中转页的时候不调用
-    if (name !== 'PaymentCode' && name !== 'ShareMiddle') {
-      console.log(222)
-      this.$store.dispatch('common/getUserInfo')
-      this.$store.dispatch('common/getOrdertype')
-    }
   }
 }
 </script>

+ 8 - 1
htmldev/cps/src/store/modules/common.js

@@ -14,7 +14,8 @@ const state = {
     id: '' // 用户ID
   },
   orderType: [], // 订单类型
-  inviteId: '' // 邀请人ID,分享链接携带
+  inviteId: '', // 邀请人ID,分享链接携带
+  isInit: false // 获取用户信息接口、订单类型接口加锁
 }
 
 const getters = {
@@ -26,6 +27,9 @@ const getters = {
   },
   inviteId (state) {
     return state.inviteId
+  },
+  isInit (state) {
+    return state.isInit
   }
 }
 
@@ -70,6 +74,9 @@ const mutations = {
   },
   UPDATE_INVITE_ID (state, value) {
     state.inviteId = value
+  },
+  UPDATE_ISINIT (state, value) {
+    state.isInit = value
   }
 }