gginfo.js 980 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. const app = getApp()
  2. var WxParse = require('../../wxParse/wxParse');
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. id: '',
  9. dinfo: '',
  10. dlist: [],
  11. manage: false
  12. },
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */
  16. onLoad: function (options) {
  17. this.setData({
  18. id: options.id
  19. })
  20. },
  21. /**
  22. * 生命周期函数--监听页面初次渲染完成
  23. */
  24. onReady: function () {
  25. },
  26. /**
  27. * 生命周期函数--监听页面显示
  28. */
  29. onShow: function () {
  30. this.getinfo();
  31. },
  32. getinfo() {
  33. var that = this;
  34. let id = that.data.id;
  35. let uid = app.globalData.openid;
  36. wx.request({
  37. url: app.data.resturl + '/gginfo.action',
  38. method: 'post',
  39. header: {
  40. 'content-type': 'application/x-www-form-urlencoded'
  41. },
  42. data: {
  43. id: id
  44. },
  45. success: function (res) {
  46. that.setData({
  47. dinfo: res.data.dinfo
  48. });
  49. }
  50. })
  51. }
  52. })