login.js 5.7 KB

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