login.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. // pages/login/login.js
  2. const app = getApp()
  3. const util = require("../../utils/util")
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. wx.showLoading({
  15. title: '加载中',
  16. mask: true
  17. })
  18. this.getVersion()
  19. },
  20. //判断版本号
  21. getVersion: function () {
  22. util.doPost(
  23. 'getVersion', {
  24. appId: app.globalData.appId
  25. }
  26. ).then(res => {
  27. if (res.version != app.globalData.ver) {
  28. wx.setStorageSync('isShow', false)
  29. wx.switchTab({
  30. url: '/pages/index/index',
  31. })
  32. } else {
  33. wx.setStorageSync('isShow', true)
  34. this.getOpenId()
  35. }
  36. })
  37. },
  38. // 登录
  39. getOpenId: function () {
  40. wx.login({
  41. success: res => {
  42. util.doPost(
  43. 'getOpenId', {
  44. appId: app.globalData.appId,
  45. code: res.code
  46. },
  47. ).then(res => {
  48. if (res.success == 1) {
  49. wx.setStorageSync('openId', res.data.openId)
  50. wx.hideLoading({
  51. })
  52. }
  53. })
  54. },
  55. fail: res => {
  56. wx.hideLoading({
  57. success: (res) => {
  58. wx.showToast({
  59. title: '提示',
  60. icon: 'none',
  61. content: '连接失败,请重试'
  62. })
  63. },
  64. })
  65. }
  66. })
  67. },
  68. //授权手机号
  69. getPhoneNumber: function (e) {
  70. const that = this;
  71. if (e.detail.errMsg == "getPhoneNumber:ok") {
  72. wx.showLoading({
  73. title: '正在登陆',
  74. mask: true
  75. })
  76. util.doPost(
  77. 'getPhoneNumber', {
  78. encryptedData: e.detail.encryptedData,
  79. iv: e.detail.iv,
  80. openId: wx.getStorageSync('openId'),
  81. }
  82. ).then(rs => {
  83. if (rs.success > 0) {
  84. wx.setStorageSync('phone', rs.data.phoneNumber);
  85. // wx.setStorageSync('phone', '13871019618')
  86. this.autoLogin();
  87. } else {
  88. wx.showToast({
  89. title: '手机号验证失败',
  90. })
  91. }
  92. })
  93. }
  94. that.setData({
  95. model: false,
  96. localtion: true
  97. })
  98. },
  99. autoLogin: function () {
  100. util.doPost(
  101. 'autoLogin', {
  102. openId: wx.getStorageSync('openId'),
  103. }
  104. ).then(rs => {
  105. wx.hideLoading()
  106. if (rs.success > 0) {
  107. wx.setStorageSync('sso-token', rs.data.token);
  108. wx.showToast({
  109. title: '登录成功',
  110. })
  111. wx.switchTab({
  112. url: '/pages/index/index'
  113. })
  114. // wx.navigateTo({
  115. // url: '/pages/doTask/doTask',
  116. // })
  117. } else {
  118. wx.showToast({
  119. title: rs.errMsg,
  120. icon: 'none',
  121. duration: 3000
  122. })
  123. }
  124. })
  125. },
  126. /**
  127. * 生命周期函数--监听页面初次渲染完成
  128. */
  129. onReady: function () {
  130. },
  131. /**
  132. * 生命周期函数--监听页面显示
  133. */
  134. onShow: function () {
  135. },
  136. /**
  137. * 生命周期函数--监听页面隐藏
  138. */
  139. onHide: function () {
  140. },
  141. /**
  142. * 生命周期函数--监听页面卸载
  143. */
  144. onUnload: function () {
  145. },
  146. /**
  147. * 页面相关事件处理函数--监听用户下拉动作
  148. */
  149. onPullDownRefresh: function () {
  150. },
  151. /**
  152. * 页面上拉触底事件的处理函数
  153. */
  154. onReachBottom: function () {
  155. },
  156. /**
  157. * 用户点击右上角分享
  158. */
  159. onShareAppMessage: function () {
  160. }
  161. })