kindList.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // kindList.js
  2. var app = getApp()
  3. Page({
  4. data: {
  5. contentList: [],
  6. name:''
  7. },
  8. onLoad: function (options) {
  9. var classid = options.com_id ;
  10. var name = options.name
  11. wx.setNavigationBarTitle({
  12. title: name
  13. })
  14. that = this;
  15. var host = getApp().globalData.servsers;
  16. //品牌定制
  17. wx.request({
  18. url: host +"findapi/findAllxcx",
  19. data: {
  20. id: classid
  21. },
  22. method: 'GET',
  23. header: {
  24. 'Accept': 'application/json'
  25. },
  26. success: function (res) {
  27. var size = res.data.total;
  28. that.setData({
  29. contentList: res.data.rows,
  30. name: name
  31. });
  32. console.log(res.data.rows);
  33. if (res == null || res.data == null) {
  34. console.error('网络请求失败');
  35. return;
  36. }
  37. }
  38. })
  39. },
  40. //下拉刷新
  41. onPullDownRefresh: function (e) {
  42. this.onLoad();
  43. wx.stopPullDownRefresh();
  44. }
  45. })
  46. var contentList = []
  47. var that;
  48. var Util = require('../../utils/util.js');