goodverify.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. // pages/goodverify/goodverify.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. "全部", "未收货", "已收货"
  16. ],
  17. tabIndex: 0, //当前tab索引
  18. orderwriteList: [], //订单核销列表
  19. time: -1, //防抖时间
  20. goodName: '', //订单号
  21. code_result: '', //扫码返回结果
  22. },
  23. /**
  24. * 生命周期函数--监听页面加载
  25. */
  26. onLoad(options) {
  27. this.getOrderwrite_list()
  28. },
  29. /**
  30. * 生命周期函数--监听页面初次渲染完成
  31. */
  32. onReady() {
  33. },
  34. /**
  35. * 生命周期函数--监听页面显示
  36. */
  37. onShow() {
  38. let that = this;
  39. if (that.data.code_result != '') {
  40. wx.showLoading({
  41. title: '扫码成功',
  42. mask: true
  43. })
  44. wx.request({
  45. url: api.Orderwrite,
  46. header: {
  47. 'Authorization': wx.getStorageSync('token')
  48. },
  49. data: {
  50. card_number: that.data.code_result,
  51. write_method: 0
  52. },
  53. method: 'POST',
  54. success(res) {
  55. wx.hideLoading()
  56. console.log(res);
  57. if (res.data.code === 1) {
  58. wx.showToast({
  59. title: '核销成功',
  60. })
  61. } else {
  62. wx.showToast({
  63. title: res.data.msg,
  64. mask: true,
  65. icon: 'none'
  66. })
  67. }
  68. },
  69. fail(err) {
  70. wx.hideLoading()
  71. wx.showToast({
  72. title: '发起网络请求失败',
  73. icon: 'none',
  74. mask: true
  75. })
  76. },
  77. complete() {
  78. that.setData({
  79. code_result: ''
  80. })
  81. // wx.hideLoading()
  82. }
  83. })
  84. }
  85. },
  86. /**
  87. * 生命周期函数--监听页面隐藏
  88. */
  89. onHide() {
  90. },
  91. /**
  92. * 生命周期函数--监听页面卸载
  93. */
  94. onUnload() {
  95. },
  96. /**
  97. * 页面相关事件处理函数--监听用户下拉动作
  98. */
  99. onPullDownRefresh() {
  100. },
  101. /**
  102. * 页面上拉触底事件的处理函数
  103. */
  104. onReachBottom() {
  105. },
  106. /**
  107. * 用户点击右上角分享
  108. */
  109. onShareAppMessage() {
  110. },
  111. // 点击tab
  112. selectTab(e) {
  113. this.setData({
  114. tabIndex: e.currentTarget.dataset.index
  115. })
  116. this.getOrderwrite_list()
  117. },
  118. // 获取数据
  119. getOrderwrite_list() {
  120. let that = this;
  121. // 获取订单核销列表
  122. wx.showLoading({
  123. title: '加载中',
  124. mask: true
  125. })
  126. wx.request({
  127. url: api.Orderwrite_list,
  128. header: {
  129. 'Authorization': wx.getStorageSync('token')
  130. },
  131. data: {
  132. order_status: that.data.tabIndex
  133. },
  134. method: 'POST',
  135. success(res) {
  136. console.log(res);
  137. if (res.data.code === 1) {
  138. that.setData({
  139. orderwriteList: res.data.data
  140. })
  141. } else {
  142. wx.showToast({
  143. title: res.data.msg,
  144. mask: true,
  145. icon: 'none'
  146. })
  147. }
  148. },
  149. fail(err) {
  150. wx.showToast({
  151. title: '发起网络请求失败',
  152. icon: 'none',
  153. mask: true
  154. })
  155. },
  156. complete() {
  157. wx.hideLoading()
  158. }
  159. })
  160. },
  161. // 搜索订单号
  162. searchGood(e) {
  163. let that = this;
  164. that.setData({
  165. goodName: e.detail.value
  166. })
  167. if (that.data.goodName != '') {
  168. // 清除定时器
  169. clearTimeout(that.data.time);
  170. // 开启定时器
  171. that.data.time = setTimeout(() => {
  172. wx.showLoading({
  173. title: '搜索中',
  174. mask: true
  175. })
  176. wx.request({
  177. url: api.Orderwrite_list,
  178. header: {
  179. 'Authorization': wx.getStorageSync('token')
  180. },
  181. data: {
  182. card_number: that.data.goodName,
  183. order_status: that.data.tabIndex
  184. },
  185. method: 'POST',
  186. success(res) {
  187. console.log(res);
  188. if (res.data.code === 1) {
  189. that.setData({
  190. orderwriteList: res.data.data
  191. })
  192. } else {
  193. wx.showToast({
  194. title: res.data.msg,
  195. mask: true,
  196. icon: 'none'
  197. })
  198. }
  199. },
  200. fail(err) {
  201. wx.showToast({
  202. title: '发起网络请求失败',
  203. icon: 'none',
  204. mask: true
  205. })
  206. },
  207. complete() {
  208. wx.hideLoading()
  209. }
  210. })
  211. }, 500)
  212. } else {
  213. that.getOrderwrite_list()
  214. }
  215. },
  216. // 跳转卡券号核销
  217. navToCardVerify() {
  218. wx.navigateTo({
  219. url: '/pages/cardverify/cardverify',
  220. })
  221. },
  222. saoma() {
  223. wx.navigateTo({
  224. url: '/pages/verify/verify',
  225. })
  226. },
  227. })