|
@@ -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
|
|
|
}
|
|
|
}
|
|
|
|