login.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. // pages/login/login.js
  2. import {
  3. getOpenidSessionKey
  4. } from '../../utils/httpUtil';
  5. import url from '../../utils/const';
  6. import request from '../../utils/WXHttpRequest';
  7. const HOST = url.baseApi;
  8. function getAPIUrl(action) {
  9. return HOST + action;
  10. }
  11. Page({
  12. /**
  13. * 页面的初始数据
  14. */
  15. data: {
  16. index: 0,
  17. canIUseGetUserProfile: false
  18. },
  19. /**
  20. * 生命周期函数--监听页面加载
  21. */
  22. onLoad: function (options) {
  23. if (options.index) {
  24. this.setData({
  25. index: options.index
  26. })
  27. }
  28. if (wx.getUserProfile) {
  29. this.setData({
  30. canIUseGetUserProfile: true
  31. })
  32. }
  33. },
  34. userLoginRecord: function (uid) {
  35. if (wx.getStorageSync('uid')) {
  36. console.log('调用方法')
  37. let url = getAPIUrl('wx/loginLog');
  38. return request.getInstance().header({
  39. uid: wx.getStorageSync('uid')
  40. }).method('POST').url(url).send().success(() => {}).fail(() => {});
  41. }
  42. },
  43. getUserProfile: function (e) {
  44. wx.getUserProfile({
  45. desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
  46. success: (userProfile) => {
  47. console.log('getUserProfile', userProfile);
  48. const userInfo = userProfile.userInfo;
  49. this.getOpenId((openidData) => {
  50. console.log('openid', openidData)
  51. let url = getAPIUrl('wx/user');
  52. const userData = {
  53. openId: openidData.data.data.openid,
  54. unionId: openidData.data.data.unionid,
  55. wechatName: userInfo.nickName,
  56. gender: userInfo.gender,
  57. avatar: userInfo.avatarUrl
  58. }
  59. request.getInstance().url(url).header({}).data(userData).method('POST').send().success(res => {
  60. console.log('登陆成功', res)
  61. wx.hideToast()
  62. wx.showToast({
  63. title: '登录成功',
  64. icon: 'success',
  65. duration: 1500,
  66. mask: true
  67. })
  68. wx.setStorageSync('uid', res.data.data.data.uid)
  69. wx.setStorageSync('user', res.data.data.data)
  70. this.userLoginRecord();
  71. const pages = getCurrentPages();
  72. const prevPage = pages[pages.length - 2];
  73. console.log(222222, prevPage)
  74. prevPage.setData({
  75. fromLoginIndex: this.data.index, // 有id就塞到第一位
  76. }, () => {
  77. wx.navigateBack({
  78. delta: 1
  79. })
  80. })
  81. });
  82. })
  83. // getOpenidSessionKey((res) => {
  84. // console.log('getUserProfilegetUserProfile', res)
  85. // wx.showToast({
  86. // title: '登录成功',
  87. // icon: 'fail',
  88. // duration: 1000,
  89. // success: () => {
  90. // const pages = getCurrentPages();
  91. // const prevPage = pages[pages.length - 2];
  92. // prevPage.setData({
  93. // fromLoginIndex: this.data.index, // 有id就塞到第一位
  94. // }, () => {
  95. // wx.navigateBack({
  96. // delta: 1
  97. // })
  98. // })
  99. // }
  100. // })
  101. // }, (error) => {
  102. // wx.showToast({
  103. // title: '登录失败',
  104. // icon: 'fail',
  105. // duration: 1000,
  106. // success: () => {
  107. // wx.navigateBack()
  108. // }
  109. // })
  110. // });
  111. }
  112. })
  113. },
  114. getOpenId: function (successcallback, failcallback) {
  115. wx.login({
  116. success: function (res) {
  117. if (res.code) {
  118. // 获取openid
  119. console.log('openId', res.code)
  120. let url = getAPIUrl('wx/user/openId')
  121. let data = {
  122. code: res.code
  123. }
  124. return request.getInstance().url(url).data(data).send().success(successcallback).fail(failcallback);
  125. } else {
  126. console.log('获取用户登录态失败!' + res.errMsg)
  127. }
  128. }
  129. })
  130. },
  131. impower: function (e) {
  132. console.log(e)
  133. var myEventDetail = {} // detail对象,提供给事件监听函数
  134. var myEventOption = {} // 触发事件的选项
  135. getOpenidSessionKey((res) => {
  136. console.log(res)
  137. wx.showToast({
  138. title: '登录成功',
  139. icon: 'fail',
  140. duration: 1000,
  141. success: () => {
  142. const pages = getCurrentPages();
  143. const prevPage = pages[pages.length - 2];
  144. prevPage.setData({
  145. fromLoginIndex: this.data.index, // 有id就塞到第一位
  146. }, () => {
  147. wx.navigateBack({
  148. delta: 1
  149. })
  150. })
  151. }
  152. })
  153. }, (error) => {
  154. wx.showToast({
  155. title: '登录失败',
  156. icon: 'fail',
  157. duration: 1000,
  158. success: () => {
  159. wx.navigateBack()
  160. }
  161. })
  162. });
  163. },
  164. touchMove: function () {
  165. return false
  166. },
  167. /**
  168. * 生命周期函数--监听页面初次渲染完成
  169. */
  170. onReady: function () {
  171. },
  172. /**
  173. * 生命周期函数--监听页面显示
  174. */
  175. onShow: function () {
  176. },
  177. /**
  178. * 生命周期函数--监听页面隐藏
  179. */
  180. onHide: function () {
  181. },
  182. /**
  183. * 生命周期函数--监听页面卸载
  184. */
  185. onUnload: function () {
  186. },
  187. /**
  188. * 页面相关事件处理函数--监听用户下拉动作
  189. */
  190. onPullDownRefresh: function () {
  191. },
  192. /**
  193. * 页面上拉触底事件的处理函数
  194. */
  195. onReachBottom: function () {
  196. },
  197. /**
  198. * 用户点击右上角分享
  199. */
  200. onShareAppMessage: function () {
  201. }
  202. })