login.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // pages/login/login.js
  2. import api from '../api/api'
  3. const md5 = require('../../utils/md5');
  4. const app = getApp()
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. form:{
  11. username:'000175',
  12. password:'123456789'
  13. }
  14. },
  15. inputChange (data) {
  16. let name = data.currentTarget.dataset.name
  17. this.data.form[name] = data.detail.value
  18. this.setData({
  19. form:this.data.form
  20. })
  21. },
  22. async login () {
  23. const res = await api._post({
  24. "accountno": this.data.form.username,
  25. "password": md5.hexMD5(this.data.form.password),
  26. "systemclient":"wechatsaletool"
  27. },'/loginbyaccount')
  28. if (res.account_list.length === 1) {
  29. wx.setStorageSync('token', res.account_list[0].token)
  30. this.query_userauth()
  31. }
  32. },
  33. async query_userauth() {
  34. const res = await api._post({
  35. "classname": "sysmanage.develop.userauth.userauth",
  36. "method": "query_userauth",
  37. content: {
  38. nocache: true
  39. }
  40. })
  41. if (res.msg != '成功') return wx.showToast({
  42. title: '权限查询失败,请稍后再试',
  43. icon: "none"
  44. })
  45. app.globalData.tabbarList = res.data[0].modules[0].apps.map(e=>{
  46. return {
  47. title:e.meta.title,
  48. name:e.name,
  49. path:e.path
  50. }
  51. })
  52. console.log(app.globalData.tabbarList)
  53. wx.setStorageSync('userauth', res.data);
  54. wx.navigateTo({
  55. url: app.globalData.tabbarList[0].path,
  56. })
  57. },
  58. /**
  59. * 生命周期函数--监听页面加载
  60. */
  61. onLoad(options) {
  62. },
  63. /**
  64. * 生命周期函数--监听页面初次渲染完成
  65. */
  66. onReady() {
  67. },
  68. /**
  69. * 生命周期函数--监听页面显示
  70. */
  71. onShow() {
  72. },
  73. /**
  74. * 生命周期函数--监听页面隐藏
  75. */
  76. onHide() {
  77. },
  78. /**
  79. * 生命周期函数--监听页面卸载
  80. */
  81. onUnload() {
  82. },
  83. /**
  84. * 页面相关事件处理函数--监听用户下拉动作
  85. */
  86. onPullDownRefresh() {
  87. },
  88. /**
  89. * 页面上拉触底事件的处理函数
  90. */
  91. onReachBottom() {
  92. },
  93. /**
  94. * 用户点击右上角分享
  95. */
  96. onShareAppMessage() {
  97. }
  98. })