| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import {
- silentLogin
- } from '@/api/app';
- import {
- isWeixinClient,
- currentPage,
- trottle
- } from './tools'
- import store from '@/store'
- import Cache from './cache'
- import {
- BACK_URL,
- INVITE_CODE
- } from '@/config/cachekey'
- import wechath5 from './wechath5'
- import {router} from '@/router'
- // 获取登录凭证(code)
- export function getWxCode() {
- return new Promise((resolve, reject) => {
- uni.login({
- success(res) {
- resolve(res.code);
- },
- fail(res) {
- reject(res);
- }
- });
- });
- }
- //小程序获取用户信息
- export function getUserProfile() {
- return new Promise((resolve, reject) => {
- uni.getUserProfile({
- desc: '获取用户信息,完善用户资料 ',
- success: (res) => {
- resolve(res);
- },
- fail(res) {}
- })
- })
- }
- //小程序静默授权
- export async function wxMnpLogin() {
- const code = await getWxCode()
- const {
- code: loginCode,
- data: loginData
- } = await silentLogin({
- code
- })
- const {
- options,
- onLoad,
- onShow,
- route
- } = currentPage()
- if (loginCode != 1) return
- if (loginData.token) {
- store.commit('login', loginData)
- // 绑定邀请码
- const inviteCode = Cache.get(INVITE_CODE)
- const optionsSync = Cache.get('OptionsSync')
- if (inviteCode) {
- Cache.remove(INVITE_CODE)
- Cache.remove('OptionsSync')
- }
- // 刷新页面
- onLoad && onLoad(options)
- onShow && onShow()
- }
- }
- export const toLogin = trottle(_toLogin, 1000)
- function _toLogin() {
- //#ifdef MP-WEIXIN
- // wxMnpLogin()
- // #endif
-
- //#ifndef MP-WEIXIN
- const {currentRoute} = router
- if(currentRoute.meta.auth) {
- router.push('/pages/login/login')
- }
- // #endif
- }
|