Prechádzať zdrojové kódy

cps:分享赚钱中转页优化

panyong 3 rokov pred
rodič
commit
10cf1d0194

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

@@ -41,9 +41,8 @@ export default {
   },
   async created () {
     const { name } = this.$route
-    const { redirectUrl } = this.$route.query
     // 为中转页的时候不调用
-    if (name !== 'PaymentCode' && !redirectUrl) {
+    if (name !== 'PaymentCode' && name !== 'ShareMiddle') {
       this.$store.dispatch('common/getUserInfo')
       this.$store.dispatch('common/getOrdertype')
     }

+ 9 - 0
htmldev/cps/src/router/index.js

@@ -133,6 +133,15 @@ const routes = [
       isUseCache: false,
       keepAlive: false
     }
+  },
+  {
+    path: '/shareMiddle', // 分享中间页
+    name: 'ShareMiddle',
+    component: _import('views/shareMiddle/index'),
+    meta: {
+      isUseCache: false,
+      keepAlive: false
+    }
   }
 ]
 

+ 2 - 6
htmldev/cps/src/views/invite/index.vue

@@ -36,12 +36,8 @@ export default {
     }
   },
   activated () {
-    const { redirectUrl } = this.$route.query
     if (!this.$route.meta.isUseCache) {
-      // 分享赚钱中转页是首页
-      if (!redirectUrl) {
-        this.fetchData()
-      }
+      this.fetchData()
     } else {
       this.$nextTick(() => {
         this.shops.length && this.$refs.myMall.show()
@@ -63,7 +59,7 @@ export default {
       } catch (err) {}
     },
     showShareTip (obj) {
-      platform.isWeixin && funWxShare(obj.category_name, obj.category_desc, obj.category_img_url, `${location.origin}${location.pathname}?redirectUrl=${encodeURIComponent(obj.link_url)}`)
+      platform.isWeixin && funWxShare(obj.category_name, obj.category_desc, obj.category_img_url, `${location.origin}/shareMiddle?redirectUrl=${encodeURIComponent(obj.link_url)}`)
       this.booShareTip = true
     }
   },

+ 13 - 0
htmldev/cps/src/views/shareMiddle/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div></div>
+</template>
+
+<script>
+export default {
+  name: 'index'
+}
+</script>
+
+<style lang="scss" scoped>
+
+</style>