login.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. import { pwdLogin, workerLogin, bindWecaht } from '../../api/login'
  2. import util from '../../utils/util'
  3. const app = getApp()
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. username: '',
  10. userPwd: '',
  11. showAccountPwd: false , // 是否使用账号密码登录
  12. },
  13. onShow() {
  14. this.setTokenExpireTime()
  15. },
  16. setTokenExpireTime () {
  17. const tokenExpireTime = wx.getStorageSync('tokenExpireTime')
  18. if (tokenExpireTime !== '' && util.getDate() !== tokenExpireTime) {
  19. wx.clearStorageSync()
  20. }
  21. this.handleLogin()
  22. },
  23. handleLogin () {
  24. const accessToken = wx.getStorageSync('accessToken')
  25. if (accessToken) {
  26. const workerLoginCode = wx.getStorageSync('workerLoginCode')
  27. if (workerLoginCode == '403') {
  28. wx.clearStorageSync()
  29. this.handleWXLogin()
  30. } else {
  31. this.handleTokenLogin()
  32. }
  33. } else {
  34. this.handleWXLogin()
  35. }
  36. },
  37. handleTokenLogin () {
  38. this.getStorageData()
  39. this.handleDeviceFn(wx.getStorageSync('device'))
  40. },
  41. handleWXLogin () {
  42. const workerLoginCode = wx.getStorageSync('workerLoginCode')
  43. if (workerLoginCode == '403') {
  44. this.handleCode403()
  45. } else {
  46. var that = this
  47. wx.login({
  48. success (res) {
  49. if (res.code) {
  50. that.workerLoginFn(res.code)
  51. } else {
  52. wx.showModal({
  53. content: '登录失败!' + res.errMsg,
  54. confirmColor: '#333',
  55. showCancel: false
  56. })
  57. }
  58. }
  59. })
  60. }
  61. },
  62. workerLoginFn (code) {
  63. const that = this
  64. wx.showLoading({
  65. title: '加载中...',
  66. mask: true
  67. })
  68. workerLogin({code: code}).then(res => {
  69. wx.hideLoading()
  70. wx.vibrateShort()
  71. that.setStorageData(res.data)
  72. that.handleDeviceFn(res.data.device)
  73. wx.setStorageSync('workerLoginCode', '000')
  74. }).catch(e => {
  75. wx.hideLoading()
  76. if (e.code == '403') {
  77. wx.setStorageSync('workerLoginCode', '403')
  78. that.handleCode403()
  79. } else {
  80. wx.showModal({
  81. content: e.msg,
  82. confirmColor: '#333',
  83. showCancel: false
  84. })
  85. }
  86. })
  87. },
  88. handleCode403 () {
  89. this.setData({
  90. showAccountPwd: true
  91. })
  92. },
  93. pwdLoginFn () {
  94. const that = this
  95. if (this.data.username == '') {
  96. wx.showToast({
  97. title: '请输入账号',
  98. icon: 'error'
  99. })
  100. } else if (this.data.userPwd == '') {
  101. wx.showToast({
  102. title: '请输入密码',
  103. icon: 'error'
  104. })
  105. } else {
  106. var data = {
  107. username: this.data.username,
  108. userPwd: this.data.userPwd
  109. }
  110. wx.showLoading({
  111. title: '登录中...',
  112. mask: true
  113. })
  114. pwdLogin(data).then(res => {
  115. wx.hideLoading()
  116. const response = res.data
  117. const isBindWechat = response.isBindWechat
  118. const device = response.device
  119. that.setStorageData(response)
  120. if (!isBindWechat) {
  121. wx.showModal({
  122. content: '请绑定微信',
  123. confirmColor: '#333',
  124. showCancel: false,
  125. showCancel: true,
  126. cancelText: '取消',
  127. success (res) {
  128. if (res.confirm) {
  129. that.bindWecahtFn(device)
  130. } else if (res.cancel) {
  131. that.handleDeviceFn(device)
  132. }
  133. }
  134. })
  135. } else {
  136. wx.vibrateShort()
  137. that.handleDeviceFn(device)
  138. }
  139. }).catch(e => {
  140. console.log(e,'eeeee');
  141. wx.hideLoading()
  142. wx.showModal({
  143. content: e.msg,
  144. confirmColor: '#333',
  145. showCancel: false
  146. })
  147. })
  148. }
  149. },
  150. bindWecahtFn (device) {
  151. const that = this
  152. wx.showLoading({
  153. title: '绑定中...',
  154. mask: true
  155. })
  156. wx.login({
  157. success (codeRes) {
  158. if (codeRes.code) {
  159. bindWecaht({code: codeRes.code}).then(res => {
  160. wx.hideLoading()
  161. wx.vibrateShort()
  162. wx.setStorageSync('workerLoginCode', '000')
  163. wx.showToast({
  164. title: '绑定成功',
  165. icon: 'success'
  166. })
  167. that.handleDeviceFn(device)
  168. }).catch(e => {
  169. wx.hideLoading()
  170. wx.showModal({
  171. content: e.msg,
  172. confirmColor: '#333',
  173. showCancel: false
  174. })
  175. })
  176. }
  177. }
  178. })
  179. },
  180. handleDeviceFn (device) {
  181. if (device !== null) {
  182. wx.redirectTo({
  183. url: '/pages/workbench/workbench?form=login&deviceName=' + device.deviceName
  184. })
  185. } else {
  186. wx.redirectTo({
  187. url: '/pages/permissions/permissions',
  188. })
  189. }
  190. },
  191. setStorageData (data) {
  192. app.globalData.accessToken = data.accessToken
  193. app.globalData.userName = data.userName
  194. app.globalData.headImg = data.headImg
  195. app.globalData.isBindWechat = data.isBindWechat
  196. app.globalData.workerId = data.workerId
  197. app.globalData.device = data.device
  198. wx.setStorageSync('accessToken', data.accessToken)
  199. wx.setStorageSync('tokenExpireTime', util.getDate())
  200. wx.setStorageSync('headImg', data.headImg)
  201. wx.setStorageSync('userName', data.userName)
  202. wx.setStorageSync('isBindWechat', data.isBindWechat)
  203. wx.setStorageSync('workerId', data.workerId)
  204. wx.setStorageSync('device', data.device)
  205. },
  206. getStorageData () {
  207. const accessToken = wx.getStorageSync('accessToken')
  208. const headImg = wx.getStorageSync('headImg')
  209. const userName = wx.getStorageSync('userName')
  210. const isBindWechat = wx.getStorageSync('isBindWechat')
  211. const workerId = wx.getStorageSync('workerId')
  212. const device = wx.getStorageSync('device')
  213. app.globalData.accessToken = accessToken
  214. app.globalData.userName = userName
  215. app.globalData.headImg = headImg
  216. app.globalData.isBindWechat = isBindWechat
  217. app.globalData.workerId = workerId
  218. app.globalData.device = device
  219. }
  220. })