login.js 5.5 KB

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