pintuanmanage.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. // pages/pintuanmanage/pintuanmanage.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. import pintuanData from '../../mocks/pintuan';
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. navbarData: {
  11. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  12. title: '拼团管理', //导航栏 中间的标题,
  13. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  14. },
  15. tabs: [
  16. "全部", "未发布", "已发布", "已截团"
  17. ],
  18. zhong: 0, //当前tab索引
  19. icon: {
  20. normal: '../../images/unchecked.png',
  21. active: '../../images/checked.png',
  22. },
  23. pintuan: [],
  24. time: -1, //防抖时间
  25. goodName: '', //拼团名称
  26. code_result: '', //扫码返回结果
  27. },
  28. /**
  29. * 生命周期函数--监听页面加载
  30. */
  31. onLoad(options) {
  32. },
  33. /**
  34. * 生命周期函数--监听页面初次渲染完成
  35. */
  36. onReady() {
  37. },
  38. /**
  39. * 生命周期函数--监听页面显示
  40. */
  41. onShow() {
  42. let that = this;
  43. that.getData();
  44. },
  45. /**
  46. * 生命周期函数--监听页面隐藏
  47. */
  48. onHide() {
  49. },
  50. /**
  51. * 生命周期函数--监听页面卸载
  52. */
  53. onUnload() {
  54. },
  55. /**
  56. * 页面相关事件处理函数--监听用户下拉动作
  57. */
  58. onPullDownRefresh() {
  59. },
  60. /**
  61. * 页面上拉触底事件的处理函数
  62. */
  63. onReachBottom() {
  64. },
  65. /**
  66. * 用户点击右上角分享
  67. */
  68. onShareAppMessage() {
  69. },
  70. tabsbind(e) {
  71. this.setData({
  72. zhong: e.currentTarget.dataset.id
  73. })
  74. this.getData()
  75. },
  76. // 拼团跳转
  77. navToPinTuanDetail(e) {
  78. let id = e.currentTarget.dataset.id;
  79. wx.navigateTo({
  80. url: '/pages/pintuandetail/pintuandetail?type=manage&id=' + id,
  81. })
  82. },
  83. // 搜索拼团名称
  84. searchGood(e) {
  85. let that = this;
  86. that.setData({
  87. goodName: e.detail.value
  88. })
  89. // 清除定时器
  90. clearTimeout(that.data.time);
  91. // 开启定时器
  92. that.data.time = setTimeout(() => {
  93. that.getData()
  94. }, 500)
  95. },
  96. // 获取数据
  97. getData() {
  98. let that = this;
  99. // 获取团长拼团列表
  100. wx.showLoading({
  101. title: '加载中',
  102. mask: true
  103. })
  104. wx.request({
  105. url: api.list_info,
  106. header: {
  107. 'Authorization': wx.getStorageSync('token')
  108. },
  109. data: {
  110. id: wx.getStorageSync('userinfo').id,
  111. gang_name: that.data.goodName,
  112. status: that.data.zhong
  113. },
  114. success(res) {
  115. wx.hideLoading()
  116. console.log(res);
  117. if (res.data.code === 1) {
  118. that.setData({
  119. pintuan: res.data.data
  120. })
  121. } else {
  122. wx.showToast({
  123. title: res.data.msg,
  124. mask: true,
  125. icon: 'none'
  126. })
  127. }
  128. },
  129. fail(err) {
  130. wx.hideLoading()
  131. wx.showToast({
  132. title: '发起网络请求失败',
  133. icon: 'none',
  134. mask: true
  135. })
  136. },
  137. complete() {
  138. // wx.hideLoading()
  139. }
  140. })
  141. },
  142. })