Prechádzať zdrojové kódy

cps:获取邀请人信息

panyong 3 rokov pred
rodič
commit
7d2a3d1aeb

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

@@ -8,12 +8,8 @@
 </template>
 
 <script>
-import wxShare from './utils/wxShare0.0'
-import { platform } from './utils/platform'
-
 export default {
   name: 'App',
-  mixins: [wxShare],
   data () {
     return {
       activeTab: '',
@@ -31,7 +27,6 @@ export default {
   async created () {
     const { name } = this.$route
     if (name !== 'PaymentCode') {
-      platform.isWeixin && this.funWxShare('返不停', '一个省钱、赚钱又返钱的生活平台', `${location.origin}/img/share.png`, `${location.origin}${location.pathname}`)
       this.$store.dispatch('common/getUserInfo')
       this.$store.dispatch('common/getOrdertype')
     }

+ 3 - 1
htmldev/cps/src/api/request.js

@@ -1,5 +1,6 @@
 import Vue from 'vue'
 import axios from 'axios'
+import store from '../store'
 import _ from 'lodash'
 import { Toast, Notify } from 'vant'
 import { getCookieValue } from '@/utils'
@@ -49,6 +50,7 @@ const toHideLoading = _.debounce(() => {
 
 // Add a request interceptor
 request.interceptors.request.use(request => {
+  const inviteId = store.getters['common/inviteId']
   const requestUrl = request.url
 
   // 因为微信开发者工具重复授权,本地开发时写死
@@ -58,7 +60,7 @@ request.interceptors.request.use(request => {
     request.headers.wechatToken = getCookieValue('fanbutingwechatToken')
   }
 
-  request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href)
+  request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href) + (inviteId ? '&invite_id=' + inviteId : '')
 
   // 判断当前请求是否设置了不显示Loading
   if (request.showLoading) {

+ 2 - 1
htmldev/cps/src/router/index.js

@@ -1,6 +1,6 @@
 import Vue from 'vue'
 import VueRouter from 'vue-router'
-import { updateWechatToken } from '@/utils'
+import { updateWechatToken, updateInviteId } from '@/utils'
 
 Vue.use(VueRouter)
 
@@ -152,6 +152,7 @@ VueRouter.prototype.push = function push (location, onResolve, onReject) {
 
 router.beforeEach((to, from, next) => {
   updateWechatToken()
+  updateInviteId()
   next()
 })
 

+ 13 - 2
htmldev/cps/src/store/modules/common.js

@@ -1,4 +1,6 @@
 import request from '@/api/request'
+import { platform } from '@/utils/platform'
+import funWxShare from '@/utils/wxShare0.0'
 
 const state = {
   userinfo: {
@@ -8,9 +10,11 @@ const state = {
     user_balance: 0, // 用户可提现余额(单位为分)
     user_crash_balance: 0, // 累计提现(单位为分)
     user_unreceive_balance: 0, // 用户未结算金额(单位为分)
-    created_at: '' // 注册时间
+    created_at: '', // 注册时间
+    id: '' // 用户ID
   },
-  orderType: [] // 订单类型
+  orderType: [], // 订单类型
+  inviteId: '' // 邀请人ID,分享链接携带
 }
 
 const getters = {
@@ -19,6 +23,9 @@ const getters = {
   },
   orderType (state) {
     return state.orderType
+  },
+  inviteId (state) {
+    return state.inviteId
   }
 }
 
@@ -31,6 +38,7 @@ const actions = {
       })
       if (status) {
         commit('UPDATE_USERINFO', data)
+        platform.isWeixin && funWxShare('返不停', '一个省钱、赚钱又返钱的生活平台', `${location.origin}/img/share.png`, `${location.origin}${location.pathname}?invite_id=${data.id}`)
       }
     } catch (err) {
       console.log(err)
@@ -59,6 +67,9 @@ const mutations = {
   },
   UPDATE_ORDER_TYPE (state, value) {
     state.orderType = [...value]
+  },
+  UPDATE_INVITE_ID (state, value) {
+    state.inviteId = value
   }
 }
 

+ 10 - 0
htmldev/cps/src/utils/index.js

@@ -56,6 +56,16 @@ export function updateWechatToken () {
   }
 }
 
+/**
+ * 获取邀请人ID
+ */
+export function updateInviteId () {
+  const inviteId = getQueryString('invite_id') || ''
+  if (inviteId) {
+    store.commit('common/UPDATE_INVITE_ID', inviteId)
+  }
+}
+
 /**
  * 数组展平
  * @param arr 原始数组

+ 34 - 36
htmldev/cps/src/utils/wxShare0.0.js

@@ -1,41 +1,39 @@
 import { WxConfig } from './wxConfig'
 
-export default {
-  methods: {
-    funWxShare (ShareTitle = '', ShareText = '', ShareImageUrl = '', link = '') {
-      const { desc, imgUrl, title } = {
-        title: ShareTitle,
-        imgUrl: ShareImageUrl,
-        desc: ShareText
-      }
-      // 低版本微信兼容
-      const appMessage = {
-        title: title, // 分享标题
-        desc: desc, // 分享描述
-        link: link, // 分享链接
-        imgUrl: imgUrl, // 分享图标
-        success: function () {
-        },
-        cancel: function () {
-        }
-      }
-      const timeline = {
-        title: desc, // 分享标题
-        link: link, // 分享链接
-        imgUrl: imgUrl, // 分享图标
-        success: function () {
-        },
-        cancel: function () {
-        }
-      }
-      WxConfig().then(result => {
-        result.ready(() => {
-          // 分享给朋友
-          result.updateAppMessageShareData ? result.updateAppMessageShareData(appMessage) : result.onMenuShareAppMessage(appMessage)
-          // 分享到朋友圈
-          result.updateTimelineShareData ? result.updateTimelineShareData(timeline) : result.onMenuShareTimeline(timeline)
-        })
-      })
+function funWxShare (ShareTitle = '', ShareText = '', ShareImageUrl = '', link = '') {
+  const { desc, imgUrl, title } = {
+    title: ShareTitle,
+    imgUrl: ShareImageUrl,
+    desc: ShareText
+  }
+  // 低版本微信兼容
+  const appMessage = {
+    title: title, // 分享标题
+    desc: desc, // 分享描述
+    link: link, // 分享链接
+    imgUrl: imgUrl, // 分享图标
+    success: function () {
+    },
+    cancel: function () {
+    }
+  }
+  const timeline = {
+    title: desc, // 分享标题
+    link: link, // 分享链接
+    imgUrl: imgUrl, // 分享图标
+    success: function () {
+    },
+    cancel: function () {
     }
   }
+  WxConfig().then(result => {
+    result.ready(() => {
+      // 分享给朋友
+      result.updateAppMessageShareData ? result.updateAppMessageShareData(appMessage) : result.onMenuShareAppMessage(appMessage)
+      // 分享到朋友圈
+      result.updateTimelineShareData ? result.updateTimelineShareData(timeline) : result.onMenuShareTimeline(timeline)
+    })
+  })
 }
+
+export default funWxShare