returnofgoods.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. // pages/returnofgoods/returnofgoods.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. tabs: ["全部", "未处理", "已处理"],
  15. indexs: 0,
  16. pintuan: [],
  17. pintuanIndex: 0,
  18. listdata: [],
  19. commodityIndex: 0
  20. },
  21. /**
  22. * 生命周期函数--监听页面加载
  23. */
  24. onLoad: function (options) {
  25. },
  26. /**
  27. * 生命周期函数--监听页面初次渲染完成
  28. */
  29. onReady: function () {
  30. },
  31. /**
  32. * 生命周期函数--监听页面显示
  33. */
  34. onShow: function () {
  35. let that = this;
  36. // 获取团长详情-拼团列表
  37. wx.showLoading({
  38. title: '加载中',
  39. mask: true
  40. })
  41. wx.request({
  42. url: api.Head_info,
  43. header: {
  44. 'Authorization': wx.getStorageSync('token')
  45. },
  46. data: {
  47. id: wx.getStorageSync('userinfo').id,
  48. },
  49. success(res) {
  50. console.log(res);
  51. if (res.data.code === 1) {
  52. that.setData({
  53. pintuan: res.data.data.gang_list
  54. })
  55. // 获取数据
  56. that.getData();
  57. } else {
  58. wx.showToast({
  59. title: res.data.msg,
  60. mask: true,
  61. icon: 'none'
  62. })
  63. }
  64. },
  65. fail(err) {
  66. wx.showToast({
  67. title: '发起网络请求失败',
  68. icon: 'none',
  69. mask: true
  70. })
  71. },
  72. complete() {
  73. wx.hideLoading()
  74. }
  75. })
  76. },
  77. /**
  78. * 生命周期函数--监听页面隐藏
  79. */
  80. onHide: function () {
  81. },
  82. /**
  83. * 生命周期函数--监听页面卸载
  84. */
  85. onUnload: function () {
  86. },
  87. /**
  88. * 页面相关事件处理函数--监听用户下拉动作
  89. */
  90. onPullDownRefresh: function () {
  91. },
  92. /**
  93. * 页面上拉触底事件的处理函数
  94. */
  95. onReachBottom: function () {
  96. },
  97. /**
  98. * 用户点击右上角分享
  99. */
  100. onShareAppMessage: function () {
  101. },
  102. // 获取数据
  103. getData() {
  104. let that = this;
  105. // 团长退货管理列表
  106. wx.showLoading({
  107. title: '加载中',
  108. mask: true
  109. })
  110. wx.request({
  111. url: api.ReturnGoods_list,
  112. header: {
  113. 'Authorization': wx.getStorageSync('token')
  114. },
  115. data: {
  116. refund_status: that.data.indexs,
  117. id: that.data.pintuan[that.data.pintuanIndex].id
  118. },
  119. method: 'POST',
  120. success(res) {
  121. console.log(res);
  122. if (res.data.code === 1) {
  123. that.setData({
  124. listdata: res.data.data
  125. })
  126. } else {
  127. wx.showToast({
  128. title: res.data.msg,
  129. mask: true,
  130. icon: 'none'
  131. })
  132. }
  133. },
  134. fail(err) {
  135. wx.showToast({
  136. title: '发起网络请求失败',
  137. icon: 'none',
  138. mask: true
  139. })
  140. },
  141. complete() {
  142. wx.hideLoading()
  143. }
  144. })
  145. },
  146. // 切换拼团
  147. pintuanChange(e) {
  148. this.setData({
  149. pintuanIndex: Number(e.detail.value)
  150. })
  151. this.getData()
  152. },
  153. // 切换Tab
  154. tabs(e) {
  155. this.setData({
  156. indexs: e.currentTarget.dataset.ind
  157. })
  158. this.getData()
  159. },
  160. // 跳转详情
  161. navToDetail(e) {
  162. let item = e.currentTarget.dataset.item;
  163. let id = item.id;
  164. if(item.refund_status == 2) {
  165. // 未处理
  166. wx.navigateTo({
  167. url: '/pages/returnofmoney/returnofmoney?id=' + id,
  168. })
  169. }else {
  170. // 已处理
  171. wx.navigateTo({
  172. url: '/pages/returnofdetail/returnofdetail?id=' + id,
  173. })
  174. }
  175. }
  176. })