gglist.js 756 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // pages/index/index.js
  2. var app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. imgurl: app.data.resturl,
  9. dlist: []
  10. },
  11. getList: function () {
  12. var that = this;
  13. wx.request({
  14. url: app.data.resturl + '/gglist.action',
  15. data: {
  16. },
  17. success: function (res) {
  18. console.log(res);
  19. that.setData({
  20. dlist: res.data.dlist
  21. })
  22. }
  23. })
  24. },
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. onLoad: function (options) {
  29. },
  30. /**
  31. * 生命周期函数--监听页面初次渲染完成
  32. */
  33. onReady: function () {
  34. },
  35. /**
  36. * 生命周期函数--监听页面显示
  37. */
  38. onShow: function () {
  39. var that = this
  40. that.getList();
  41. }
  42. })