welcome.js 829 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. const APP = getApp();
  2. Page({
  3. /**
  4. * 生命周期函数--监听页面加载
  5. */
  6. onLoad: function (options) {
  7. this.login();
  8. },
  9. /**
  10. * 登录
  11. */
  12. login: function () {
  13. const that = this;
  14. wx.login({
  15. success: res => {
  16. const params = {
  17. code: res.code
  18. }
  19. //登录
  20. APP.Post(APP.Url.login, params).then(res => {
  21. APP.globalData.openId = res.data;
  22. //请求设备集合
  23. that.getDeviceList(res.data);
  24. })
  25. }
  26. })
  27. },
  28. /**
  29. * 获取设备列表
  30. */
  31. getDeviceList: function (userId) {
  32. const params = {
  33. userId: userId,
  34. }
  35. APP.Get(APP.Url.getListByUserId, params).then(res => {
  36. APP.globalData.deviceList = res.data;
  37. wx.switchTab({
  38. url: '/pages/index/index',
  39. })
  40. })
  41. }
  42. })