authorize.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. import Util from '../../utils/util.js';
  2. import { getLogo } from '../../api/api.js';
  3. import { login } from '../../api/user.js';
  4. let app = getApp();
  5. Component({
  6. properties: {
  7. iShidden: {
  8. type: Boolean,
  9. value: true,
  10. },
  11. //是否自动登录
  12. isAuto: {
  13. type: Boolean,
  14. value: true,
  15. },
  16. isGoIndex:{
  17. type: Boolean,
  18. value:true,
  19. },
  20. },
  21. data: {
  22. cloneIner: null,
  23. loading:false,
  24. errorSum:0,
  25. errorNum:3
  26. },
  27. attached() {
  28. this.get_logo_url();
  29. this.setAuthStatus();
  30. },
  31. methods: {
  32. close(){
  33. let pages = getCurrentPages();
  34. let currPage = pages[pages.length - 1];
  35. if(this.data.isGoIndex){
  36. wx.switchTab({url:'/pages/index/index'});
  37. }else{
  38. this.setData({
  39. iShidden: true
  40. });
  41. if (currPage && currPage.data.iShidden != undefined){
  42. currPage.setData({ iShidden:true});
  43. }
  44. }
  45. },
  46. get_logo_url: function () {
  47. var that = this;
  48. if (wx.getStorageSync('logo_url')) return this.setData({ logo_url: wx.getStorageSync('logo_url') });
  49. getLogo().then(res=>{
  50. wx.setStorageSync('logo_url', res.data.logo_url);
  51. that.setData({ logo_url: res.data.logo_url });
  52. });
  53. },
  54. //检测登录状态并执行自动登录
  55. setAuthStatus() {
  56. var that = this;
  57. Util.chekWxLogin().then((res)=> {
  58. let pages = getCurrentPages();
  59. let currPage = pages[pages.length - 1];
  60. if (currPage && currPage.data.iShidden != undefined) {
  61. currPage.setData({ iShidden:true});
  62. }
  63. if (res.isLogin) {
  64. if (!Util.checkLogin()) return Promise.reject({ authSetting: true, msg: '用户token失效', userInfo: res.userInfo});
  65. that.triggerEvent('onLoadFun', app.globalData.userInfo);
  66. }else{
  67. wx.showLoading({ title: '正在登录中' });
  68. that.setUserInfo(res.userInfo,true);
  69. }
  70. }).catch(res=>{
  71. if (res.authSetting === false) {
  72. //没有授权不会自动弹出登录框
  73. if (that.data.isAuto === false) return;
  74. //自动弹出授权
  75. that.setData({ iShidden: false });
  76. } else if (res.authSetting){
  77. //授权后登录token失效了
  78. that.setUserInfo(res.userInfo);
  79. }
  80. })
  81. },
  82. //授权
  83. setUserInfo(userInfo,isLogin) {
  84. let that = this;
  85. wx.showLoading({ title: '正在登录中' });
  86. if (isLogin){
  87. that.getWxUserInfo(userInfo);
  88. }else{
  89. Util.getCodeLogin((res)=>{
  90. Util.wxgetUserInfo().then(userInfo=>{
  91. userInfo.code = res.code;
  92. that.getWxUserInfo(userInfo);
  93. }).catch(res=>{
  94. wx.hideLoading();
  95. });
  96. });
  97. }
  98. },
  99. getWxUserInfo: function (userInfo){
  100. let that = this;
  101. userInfo.spread_spid = app.globalData.spid;//获取推广人ID
  102. userInfo.spread_code = app.globalData.code;//获取推广人分享二维码ID
  103. login(userInfo).then(res => {
  104. app.globalData.token = res.data.token;
  105. app.globalData.isLog = true;
  106. app.globalData.userInfo = res.data.userInfo;
  107. app.globalData.expiresTime = res.data.expires_time;
  108. if (res.data.cache_key) wx.setStorage({ key: 'cache_key', data: res.data.cache_key });
  109. //取消登录提示
  110. wx.hideLoading();
  111. //关闭登录弹出窗口
  112. that.setData({ iShidden: true, errorSum: 0 });
  113. //执行登录完成回调
  114. that.triggerEvent('onLoadFun', app.globalData.userInfo);
  115. }).catch((err) => {
  116. wx.hideLoading();
  117. that.data.errorSum++;
  118. that.setData({ errorSum: that.data.errorSum });
  119. if (that.data.errorSum >= that.data.errorNum) {
  120. Util.Tips({ title: err });
  121. } else {
  122. that.setUserInfo(userInfo);
  123. }
  124. });
  125. }
  126. },
  127. })