login.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. import store from "../store";
  2. import Cache from '../utils/cache';
  3. import {
  4. Debounce
  5. } from '@/utils/validate.js'
  6. // #ifdef H5 || APP-PLUS
  7. import {
  8. isWeixin
  9. } from "../utils";
  10. import auth from './wechat';
  11. // #endif
  12. import {
  13. LOGIN_STATUS,
  14. USER_INFO,
  15. EXPIRES_TIME,
  16. STATE_R_KEY
  17. } from './../config/cache';
  18. import Routine from '@/libs/routine';
  19. function prePage() {
  20. let pages = getCurrentPages();
  21. let prePage = pages[pages.length - 1];
  22. // #ifndef APP-PLUS
  23. return prePage.route;
  24. // #endif
  25. // #ifdef APP-PLUS
  26. return prePage.$page.fullPath;
  27. // #endif
  28. }
  29. export const toLogin = Debounce(_toLogin, 800)
  30. function _toLogin(push, pathLogin) {
  31. console.log("跳转登录界面:"+pathLogin);
  32. // #ifdef H5
  33. if (isWeixin()) {
  34. if (!uni.getStorageSync('authIng')) {
  35. store.commit("LOGOUT");
  36. }
  37. } else {
  38. store.commit("LOGOUT");
  39. }
  40. // #endif
  41. // #ifndef H5
  42. store.commit("LOGOUT");
  43. // #endif
  44. let path = prePage();
  45. // #ifdef H5
  46. path = location.pathname + location.search;
  47. // #endif
  48. if (!pathLogin)
  49. pathLogin = '/page/users/login/index'
  50. Cache.set('login_back_url', path);
  51. // #ifdef H5
  52. if (isWeixin()) {
  53. let urlData = location.pathname + location.search
  54. if (urlData.indexOf('?') !== -1) {
  55. urlData += '&go_longin=1';
  56. } else {
  57. urlData += '?go_longin=1';
  58. }
  59. // if (!Cache.has('snsapiKey')) {
  60. // auth.oAuth('snsapi_base', urlData);
  61. // } else {
  62. // uni.navigateTo({
  63. // url: '/pages/users/wechat_login/index',
  64. // });
  65. // }
  66. uni.navigateTo({
  67. url: '/pages/users/wechat_login/index',
  68. });
  69. } else {
  70. uni.navigateTo({
  71. url: '/pages/users/login/index'
  72. })
  73. }
  74. // #endif
  75. // #ifdef MP
  76. uni.navigateTo({
  77. url: '/pages/users/wechat_login/index'
  78. })
  79. // Routine.getCode()
  80. // .then(code => {
  81. // console.log(code)
  82. // Routine.silenceAuth(code).then(res => {
  83. // console.log(res)
  84. // })
  85. // })
  86. // .catch(err => {
  87. // uni.hideLoading();
  88. // });
  89. // #endif
  90. // #ifdef APP-PLUS
  91. uni.navigateTo({
  92. url: '/pages/users/login/index'
  93. })
  94. // #endif
  95. }
  96. export function checkLogin() {
  97. let token = Cache.get(LOGIN_STATUS);
  98. // let token
  99. let expiresTime = Cache.get(EXPIRES_TIME);
  100. // let newTime = Math.round(new Date() / 1000);
  101. if (!token) {
  102. uni.setStorageSync('authIng', false)
  103. Cache.clear(LOGIN_STATUS);
  104. Cache.clear(EXPIRES_TIME);
  105. Cache.clear("GOOD_ID_LOGIN");
  106. Cache.clear("INVITE_CODE_LOGIN");
  107. Cache.clear(USER_INFO);
  108. Cache.clear(STATE_R_KEY);
  109. return false;
  110. } else {
  111. store.commit('UPDATE_LOGIN', token);
  112. let userInfo = Cache.get(USER_INFO, true);
  113. if (userInfo) {
  114. store.commit('UPDATE_USERINFO', userInfo);
  115. }
  116. return true;
  117. }
  118. }