login.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. // pages/login/login.js
  2. const app = getApp()
  3. const util = require("../../utils/util")
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. isPage: '',
  10. isId: '',
  11. imageUrl: app.globalData.imageUrl,
  12. isShow: true,
  13. testName: '',
  14. testPwd: ''
  15. },
  16. update: function () {
  17. const updateManager = wx.getUpdateManager()
  18. const that = this
  19. updateManager.onCheckForUpdate(function (res) {
  20. // 请求完新版本信息的回调
  21. if(res.hasUpdate){//发现新版本,提示更新
  22. updateManager.onUpdateReady(function () {
  23. wx.showModal({
  24. title: '更新提示',
  25. content: '发现新版本,请重新启动小程序',
  26. showCancel: false,
  27. success(res) {
  28. if (res.confirm) {
  29. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  30. updateManager.applyUpdate()
  31. }
  32. }
  33. })
  34. })
  35. } else {//没有新版本,直接进行下一步获取相关参数
  36. that.getVersion()
  37. }
  38. })
  39. updateManager.onUpdateFailed(function () {
  40. // 新版本下载失败
  41. wx.showModal({
  42. title: '提示',
  43. content: '更新失败,请检查网络或者重新启动小程序',
  44. showCancel: false,
  45. success(res){
  46. if(res.confirm){
  47. updateManager.applyUpdate()
  48. }
  49. }
  50. })
  51. })
  52. },
  53. /**
  54. * 生命周期函数--监听页面加载
  55. */
  56. onLoad: function (options) {
  57. wx.showLoading({
  58. title: '加载中',
  59. mask: true
  60. })
  61. if (options.isPage) {
  62. this.setData({
  63. isPage: options.isPage,
  64. isId: options.isId
  65. })
  66. }
  67. this.update()
  68. },
  69. //判断版本号
  70. getVersion: function () {
  71. util.doPost(
  72. 'getVersion', {
  73. appId: app.globalData.appId
  74. }
  75. ).then(res => {
  76. if (res.version != app.globalData.ver) {
  77. wx.setStorageSync('isShow', false)
  78. } else {
  79. wx.setStorageSync('isShow', true)
  80. }
  81. this.getOpenId()
  82. this.setData({
  83. isShow: res.version == app.globalData.ver
  84. })
  85. })
  86. },
  87. // 登录
  88. getOpenId: function () {
  89. wx.login({
  90. success: res => {
  91. util.doPost(
  92. 'getOpenId', {
  93. appId: app.globalData.appId,
  94. code: res.code
  95. },
  96. ).then(res => {
  97. if (res.success == 1) {
  98. wx.setStorageSync('openId', res.data.openId)
  99. }
  100. })
  101. },
  102. fail: res => {
  103. wx.showToast({
  104. title: '提示',
  105. icon: 'none',
  106. content: '连接失败,请重试'
  107. })
  108. }
  109. })
  110. },
  111. loginBtn:function(){
  112. wx.showLoading({
  113. title: '正在登陆',
  114. mask: true
  115. })
  116. },
  117. //授权手机号
  118. getPhoneNumber: function (e) {
  119. const that = this;
  120. if (e.detail.errMsg == "getPhoneNumber:ok") {
  121. wx.showLoading({
  122. title: '正在登陆',
  123. mask: true
  124. })
  125. util.doPost(
  126. 'getPhoneNumber', {
  127. encryptedData: e.detail.encryptedData,
  128. iv: e.detail.iv,
  129. openId: wx.getStorageSync('openId'),
  130. }
  131. ).then(rs => {
  132. if (rs.success > 0) {
  133. if(that.data.isShow){
  134. wx.setStorageSync('phone', rs.data.phoneNumber);
  135. } else {
  136. wx.setStorageSync('phone', '13293333334');
  137. }
  138. this.autoLogin();
  139. } else {
  140. wx.showToast({
  141. title: '手机号验证失败',
  142. })
  143. }
  144. })
  145. }
  146. that.setData({
  147. model: false,
  148. localtion: true
  149. })
  150. },
  151. getName:function(e){
  152. this.setData({
  153. testName : e.detail.value
  154. })
  155. },
  156. getPwd:function(e){
  157. this.setData({
  158. testPwd : e.detail.value
  159. })
  160. },
  161. testLogin:function(){
  162. if(this.data.testName != '13293333334'){
  163. wx.showToast({
  164. title: '账号错误',
  165. icon: 'none'
  166. })
  167. return
  168. } else if(this.data.testPwd != '333334') {
  169. wx.showToast({
  170. title: '密码错误',
  171. icon: 'none'
  172. })
  173. return
  174. } else {
  175. wx.setStorageSync('phone', '13293333334')
  176. this.autoLogin()
  177. }
  178. },
  179. autoLogin: function () {
  180. var openId = ''
  181. if(this.data.isShow){
  182. openId = wx.getStorageSync('openId')
  183. } else {
  184. openId ='o9b5O5J24HLeDEJtZ2BfGXd8z6J4'
  185. }
  186. util.doPost(
  187. 'autoLogin', {
  188. openId ,
  189. }
  190. ).then(rs => {
  191. if (rs.success > 0) {
  192. wx.setStorageSync('sso-token', rs.data.token);
  193. wx.showToast({
  194. title: '登录成功',
  195. })
  196. if (this.data.isPage) {
  197. wx.redirectTo({
  198. url: '/pages/' + this.data.isPage + "/" + this.data.isPage + "?proId=" + this.data.isId,
  199. })
  200. } else {
  201. wx.switchTab({
  202. url: '/pages/index/index'
  203. })
  204. }
  205. } else {
  206. wx.showToast({
  207. title: rs.errMsg,
  208. icon: 'none',
  209. duration: 3000
  210. })
  211. }
  212. })
  213. },
  214. /**
  215. * 生命周期函数--监听页面初次渲染完成
  216. */
  217. onReady: function () {
  218. },
  219. /**
  220. * 生命周期函数--监听页面显示
  221. */
  222. onShow: function () {
  223. },
  224. /**
  225. * 生命周期函数--监听页面隐藏
  226. */
  227. onHide: function () {
  228. },
  229. /**
  230. * 生命周期函数--监听页面卸载
  231. */
  232. onUnload: function () {
  233. },
  234. /**
  235. * 页面相关事件处理函数--监听用户下拉动作
  236. */
  237. onPullDownRefresh: function () {
  238. },
  239. /**
  240. * 页面上拉触底事件的处理函数
  241. */
  242. onReachBottom: function () {
  243. },
  244. /**
  245. * 用户点击右上角分享
  246. */
  247. onShareAppMessage: function () {
  248. }
  249. })