pintuanchoose.js 2.6 KB

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