解析分享参数,绑定推广员
parent
f00a8052ea
commit
950acf5275
|
@ -1,6 +1,7 @@
|
||||||
// 登录
|
// 登录
|
||||||
import third from '@/sheep/api/migration/third';
|
import third from '@/sheep/api/migration/third';
|
||||||
import SocialApi from '@/sheep/api/member/social';
|
import SocialApi from '@/sheep/api/member/social';
|
||||||
|
import $share from '@/sheep/platform/share';
|
||||||
|
|
||||||
// TODO 芋艿:等后面搞 App 再弄
|
// TODO 芋艿:等后面搞 App 再弄
|
||||||
const socialType = 32; // 社交类型 - 微信开放平台
|
const socialType = 32; // 社交类型 - 微信开放平台
|
||||||
|
@ -16,6 +17,7 @@ const login = () => {
|
||||||
});
|
});
|
||||||
debugger
|
debugger
|
||||||
if (loginRes.errMsg == 'login:ok') {
|
if (loginRes.errMsg == 'login:ok') {
|
||||||
|
// TODO third.wechat.login 函数未实现
|
||||||
const res = await third.wechat.login({
|
const res = await third.wechat.login({
|
||||||
platform: 'openPlatform',
|
platform: 'openPlatform',
|
||||||
shareInfo: uni.getStorageSync('shareLog') || {},
|
shareInfo: uni.getStorageSync('shareLog') || {},
|
||||||
|
@ -27,6 +29,7 @@ const login = () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.error === 0) {
|
if (res.error === 0) {
|
||||||
|
$share.bindBrokerageUser()
|
||||||
resolve(true);
|
resolve(true);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -2,6 +2,7 @@ import $store from '@/sheep/store';
|
||||||
import $platform from '@/sheep/platform';
|
import $platform from '@/sheep/platform';
|
||||||
import $router from '@/sheep/router';
|
import $router from '@/sheep/router';
|
||||||
import $url from '@/sheep/url';
|
import $url from '@/sheep/url';
|
||||||
|
import BrokerageApi from '@/sheep/api/trade/brokerage';
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
import $wxsdk from '@/sheep/libs/sdk-h5-weixin';
|
import $wxsdk from '@/sheep/libs/sdk-h5-weixin';
|
||||||
// #endif
|
// #endif
|
||||||
|
@ -152,18 +153,16 @@ const decryptSpm = (spm) => {
|
||||||
id: shareParamsArray[2],
|
id: shareParamsArray[2],
|
||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
case '6': // 分销
|
|
||||||
// TODO puhui999: 如果用户未登录想想怎么搞
|
|
||||||
}
|
}
|
||||||
shareParams.platform = platformMap[shareParamsArray[3] - 1];
|
shareParams.platform = platformMap[shareParamsArray[3] - 1];
|
||||||
shareParams.from = fromMap[shareParamsArray[4] - 1];
|
shareParams.from = fromMap[shareParamsArray[4] - 1];
|
||||||
if (shareParams.shareId != 0) {
|
if (shareParams.shareId !== 0) {
|
||||||
// 已登录 立即添加分享记录
|
// 已登录 绑定推广员
|
||||||
if (user.isLogin) {
|
if (user.isLogin) {
|
||||||
user.addShareLog(shareParams);
|
bindBrokerageUser(shareParams.shareId);
|
||||||
} else {
|
} else {
|
||||||
// 未登录 待用户登录后添加分享记录
|
// 记录分享者编号
|
||||||
uni.setStorageSync('shareLog', shareParams);
|
uni.setStorageSync('shareId', shareParams.shareId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,6 +172,19 @@ const decryptSpm = (spm) => {
|
||||||
return shareParams;
|
return shareParams;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 绑定推广员
|
||||||
|
const bindBrokerageUser = async (val= undefined) => {
|
||||||
|
try {
|
||||||
|
const shareId = val || uni.getStorageSync('shareId');
|
||||||
|
if (!shareId) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await BrokerageApi.bindBrokerageUser({ bindUserId: shareId });
|
||||||
|
uni.removeStorageSync('shareId');
|
||||||
|
} catch {
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// 更新公众号分享sdk
|
// 更新公众号分享sdk
|
||||||
const updateShareInfo = (shareInfo) => {
|
const updateShareInfo = (shareInfo) => {
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
|
@ -186,4 +198,5 @@ export default {
|
||||||
getShareInfo,
|
getShareInfo,
|
||||||
updateShareInfo,
|
updateShareInfo,
|
||||||
decryptSpm,
|
decryptSpm,
|
||||||
|
bindBrokerageUser,
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,17 +1,9 @@
|
||||||
import {
|
import { defineStore } from 'pinia';
|
||||||
defineStore
|
|
||||||
} from 'pinia';
|
|
||||||
import $share from '@/sheep/platform/share';
|
import $share from '@/sheep/platform/share';
|
||||||
import {
|
import { clone, cloneDeep } from 'lodash';
|
||||||
isEmpty,
|
|
||||||
cloneDeep,
|
|
||||||
clone
|
|
||||||
} from 'lodash';
|
|
||||||
import cart from './cart';
|
import cart from './cart';
|
||||||
import app from './app';
|
import app from './app';
|
||||||
import {
|
import { showAuthModal } from '@/sheep/hooks/useModal';
|
||||||
showAuthModal
|
|
||||||
} from '@/sheep/hooks/useModal';
|
|
||||||
import UserApi from '@/sheep/api/member/user';
|
import UserApi from '@/sheep/api/member/user';
|
||||||
import PayWalletApi from '@/sheep/api/pay/wallet';
|
import PayWalletApi from '@/sheep/api/pay/wallet';
|
||||||
import OrderApi from '@/sheep/api/trade/order';
|
import OrderApi from '@/sheep/api/trade/order';
|
||||||
|
@ -29,7 +21,7 @@ const defaultUserInfo = {
|
||||||
// 默认钱包信息
|
// 默认钱包信息
|
||||||
const defaultUserWallet = {
|
const defaultUserWallet = {
|
||||||
balance: 0, // 余额
|
balance: 0, // 余额
|
||||||
}
|
};
|
||||||
|
|
||||||
// 默认订单、优惠券等其他资产信息
|
// 默认订单、优惠券等其他资产信息
|
||||||
const defaultNumData = {
|
const defaultNumData = {
|
||||||
|
@ -90,19 +82,19 @@ const user = defineStore({
|
||||||
|
|
||||||
// 添加分享记录
|
// 添加分享记录
|
||||||
// TODO 芋艿:整理下;
|
// TODO 芋艿:整理下;
|
||||||
async addShareLog(params) {
|
// async addShareLog(params) {
|
||||||
const {
|
// const {
|
||||||
error
|
// error
|
||||||
} = await userApi.addShareLog(params);
|
// } = await userApi.addShareLog(params);
|
||||||
if (error === 0) uni.removeStorageSync('shareLog');
|
// if (error === 0) uni.removeStorageSync('shareLog');
|
||||||
},
|
// },
|
||||||
|
|
||||||
// 设置 token
|
// 设置 token
|
||||||
setToken(token = '', refreshToken = '') {
|
setToken(token = '', refreshToken = '') {
|
||||||
if (token === '') {
|
if (token === '') {
|
||||||
this.isLogin = false;
|
this.isLogin = false;
|
||||||
uni.removeStorageSync('token');
|
uni.removeStorageSync('token');
|
||||||
uni.removeStorageSync('refresh-token')
|
uni.removeStorageSync('refresh-token');
|
||||||
} else {
|
} else {
|
||||||
this.isLogin = true;
|
this.isLogin = true;
|
||||||
uni.setStorageSync('token', token);
|
uni.setStorageSync('token', token);
|
||||||
|
@ -159,14 +151,16 @@ const user = defineStore({
|
||||||
showAuthModal('changeMobile');
|
showAuthModal('changeMobile');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 绑定推广员
|
||||||
|
$share.bindBrokerageUser()
|
||||||
// 添加分享记录
|
// 添加分享记录
|
||||||
// TODO 芋艿:整理下;
|
// TODO 芋艿:整理下;
|
||||||
const shareLog = uni.getStorageSync('shareLog');
|
// const shareLog = uni.getStorageSync('shareLog');
|
||||||
if (!isEmpty(shareLog)) {
|
// if (!isEmpty(shareLog)) {
|
||||||
this.addShareLog({
|
// this.addShareLog({
|
||||||
...shareLog,
|
// ...shareLog,
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
},
|
},
|
||||||
|
|
||||||
// 登出系统
|
// 登出系统
|
||||||
|
@ -179,7 +173,7 @@ const user = defineStore({
|
||||||
enabled: true,
|
enabled: true,
|
||||||
strategies: [{
|
strategies: [{
|
||||||
key: 'user-store',
|
key: 'user-store',
|
||||||
}, ],
|
}]
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue