footprint.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. // pages/footprint/footprint.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. pintuan: [],
  16. time: -1, //防抖时间
  17. goodName: '', //拼团名称
  18. },
  19. /**
  20. * 生命周期函数--监听页面加载
  21. */
  22. onLoad: function (options) {
  23. let that = this;
  24. wx.showLoading({
  25. title: '加载中',
  26. mask: true
  27. })
  28. wx.request({
  29. url: api.footprints,
  30. header: {
  31. 'Authorization': wx.getStorageSync('token')
  32. },
  33. method: 'POST',
  34. success(res) {
  35. console.log(res);
  36. if (res.data.code === 1) {
  37. that.setData({
  38. pintuan: res.data.data
  39. })
  40. } else {
  41. wx.showToast({
  42. title: res.data.msg,
  43. mask: true,
  44. icon: 'none'
  45. })
  46. }
  47. },
  48. fail(err) {
  49. wx.showToast({
  50. title: '发起网络请求失败',
  51. icon: 'none',
  52. mask: true
  53. })
  54. },
  55. complete() {
  56. wx.hideLoading()
  57. }
  58. })
  59. },
  60. /**
  61. * 生命周期函数--监听页面初次渲染完成
  62. */
  63. onReady: function () {
  64. },
  65. /**
  66. * 生命周期函数--监听页面显示
  67. */
  68. onShow: function () {
  69. },
  70. /**
  71. * 生命周期函数--监听页面隐藏
  72. */
  73. onHide: function () {
  74. },
  75. /**
  76. * 生命周期函数--监听页面卸载
  77. */
  78. onUnload: function () {
  79. },
  80. /**
  81. * 页面相关事件处理函数--监听用户下拉动作
  82. */
  83. onPullDownRefresh: function () {
  84. },
  85. /**
  86. * 页面上拉触底事件的处理函数
  87. */
  88. onReachBottom: function () {
  89. },
  90. /**
  91. * 用户点击右上角分享
  92. */
  93. onShareAppMessage: function () {
  94. },
  95. // 拼团跳转
  96. navToPinTuanDetail(e) {
  97. let id = e.currentTarget.dataset.id;
  98. wx.navigateTo({
  99. url: '/pages/pintuandetail/pintuandetail?type=dingyue&id=' + id,
  100. })
  101. },
  102. // 搜索拼团名称
  103. searchGood(e) {
  104. let that = this;
  105. that.setData({
  106. goodName: e.detail.value
  107. })
  108. // 清除定时器
  109. clearTimeout(that.data.time);
  110. // 开启定时器
  111. that.data.time = setTimeout(() => {
  112. that.getData()
  113. }, 500)
  114. },
  115. // 获取数据
  116. getData() {
  117. let that = this;
  118. wx.showLoading({
  119. title: '加载中',
  120. mask: true
  121. })
  122. wx.request({
  123. url: api.footprints,
  124. header: {
  125. 'Authorization': wx.getStorageSync('token')
  126. },
  127. data: {
  128. name: that.data.goodName
  129. },
  130. method: 'POST',
  131. success(res) {
  132. console.log(res);
  133. if (res.data.code === 1) {
  134. that.setData({
  135. pintuan: res.data.data
  136. })
  137. } else {
  138. wx.showToast({
  139. title: res.data.msg,
  140. mask: true,
  141. icon: 'none'
  142. })
  143. }
  144. },
  145. fail(err) {
  146. wx.showToast({
  147. title: '发起网络请求失败',
  148. icon: 'none',
  149. mask: true
  150. })
  151. },
  152. complete() {
  153. wx.hideLoading()
  154. }
  155. })
  156. }
  157. })