index.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // pages/vendingMachine/index.js
  2. const util = require('../../utils/util.js');
  3. const app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. userInfo:{},
  10. deviceNum:'',
  11. stockDeviceNum:''
  12. },
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */
  16. onLoad: function (options) {
  17. this.setData({
  18. userInfo: app.globalData.userInfo
  19. })
  20. this.getDeviceNum()
  21. this.getStockDeviceNum()
  22. },
  23. /**
  24. * 生命周期函数--监听页面初次渲染完成
  25. */
  26. onReady: function () {
  27. },
  28. /**
  29. * 生命周期函数--监听页面显示
  30. */
  31. onShow: function () {
  32. },
  33. /**
  34. * 生命周期函数--监听页面隐藏
  35. */
  36. onHide: function () {
  37. },
  38. /**
  39. * 生命周期函数--监听页面卸载
  40. */
  41. onUnload: function () {
  42. },
  43. /**
  44. * 页面相关事件处理函数--监听用户下拉动作
  45. */
  46. onPullDownRefresh: function () {
  47. },
  48. /**
  49. * 页面上拉触底事件的处理函数
  50. */
  51. onReachBottom: function () {
  52. },
  53. /**
  54. * 用户点击右上角分享
  55. */
  56. onShareAppMessage: function () {
  57. },
  58. toRouter(e){
  59. console.log(e)
  60. wx.navigateTo({
  61. url: e.currentTarget.dataset.url,
  62. })
  63. },
  64. getDeviceNum(){
  65. var that = this
  66. util.request(util.api.getDeviceNum, {}, "GET", false, true,app.globalData.token).then((res)=>{
  67. if (res.code == 200) {
  68. that.setData({
  69. deviceNum: res.result,
  70. })
  71. }
  72. }).catch((res) => {})
  73. },
  74. getStockDeviceNum(){
  75. var that = this
  76. util.request(util.api.getStockDeviceNum, {}, "GET", false, true,app.globalData.token).then((res)=>{
  77. if (res.code == 200) {
  78. that.setData({
  79. stockDeviceNum: res.result,
  80. })
  81. }
  82. }).catch((res) => {})
  83. },
  84. })