| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view></view>
- </template>
- <script>
- import { getUserInfo } from '@/api/login.js';
- import { mapMutations,mapState } from 'vuex';
- // #ifdef H5
- import { wechatAuth } from '@/api/wx';
- // #endif
- // #ifdef MP-WEIXIN
- import { wechatMpAuth } from '@/api/wx';
- // #endif
- export default {
- data() {
- return {};
- },
- onLoad(option) {
- let obj = this;
- // 判断是否需要保存定向地址
- // #ifdef H5
- this.loadH5();
- // #endif
- // #ifdef MP-WEIXIN
- this.loadMp(option);
- // #endif
- },
- computed: {
- ...mapState(['urlFile'])
- },
- methods: {
- ...mapMutations(['login', 'setUserInfo']),
- // #ifdef H5
- loadH5() {
- let obj = this;
- let url = window.location.href;
- let code = url.match(/code=([0-9]|[a-z]|[A-Z])*/g)[0].replace('code=', '');
- history.replaceState({ name: '首页' }, '首页', obj.urlFile+'/pages/index/index');
- let spread = uni.getStorageSync('spread') || '';
- let spreadId = uni.getStorageSync('spread_uid') || '';
- wechatAuth({
- code: code,
- spread: spread,
- spread_uid: spreadId,
- }).then(({ data }) => {
- obj.wchatAuth(data);
- });
- },
- // #endif
- // #ifdef MP-WEIXIN
- loadMp(option) {
- let obj = this;
- // 获取登录授权页数据
- let user = obj.$api.prePage().userInfo;
- // 获取推广人id
- let spread_spid = uni.getStorageSync('spread') || '';
- wechatMpAuth({
- code: option.code,
- iv: user.target.iv,
- encryptedData: user.target.encryptedData,
- spread_spid: spread_spid
- }).then(({ data }) => {
- obj.wchatAuth(data);
- });
- },
- // #endif
- wchatAuth(data) {
- let obj = this;
- // 保存token
- uni.setStorageSync('token', data.token);
- // 获取用户基础信息
- getUserInfo({}).then(e => {
- obj.login();
- // 保存返回用户数据
- obj.setUserInfo(e.data);
- let ur = uni.getStorageSync('present') || '/pages/index/index';
- // 用于处理缓存bug
- if (ur=='pages/product/product') {
- ur = '/pages/index/index'
- }
- uni.switchTab({
- url: ur,
- fail(e) {
- uni.navigateTo({
- url: ur,
- fail(e) {
- uni.navigateTo({
- url: '/pages/index/index',
- });
- }
- });
- }
- });
- });
- }
- }
- };
- </script>
- <style></style>
|