deliveryaddress.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. // pages/deliveryaddress/deliveryaddress.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. type: 0, //进入类型(0:提货;1:交货)
  15. addressList: [], //收货地址列表
  16. tihuoList: [], //提货地址列表
  17. },
  18. /**
  19. * 生命周期函数--监听页面加载
  20. */
  21. onLoad: function (options) {
  22. let that = this;
  23. let type = Number(options.type);
  24. if (type === 0) {
  25. that.setData({
  26. navbarData: {
  27. showCapsule: 1,
  28. title: '提货点管理',
  29. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  30. },
  31. type: type
  32. })
  33. } else if (type === 1) {
  34. that.setData({
  35. navbarData: {
  36. showCapsule: 1,
  37. title: '收货地址',
  38. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  39. },
  40. type: type
  41. })
  42. }
  43. },
  44. /**
  45. * 生命周期函数--监听页面初次渲染完成
  46. */
  47. onReady: function () {
  48. },
  49. /**
  50. * 生命周期函数--监听页面显示
  51. */
  52. onShow: function () {
  53. let that = this;
  54. wx.showLoading({
  55. title: '加载中',
  56. mask: true
  57. })
  58. if (that.data.type === 0) {
  59. // 提货点列表
  60. wx.request({
  61. url: api.Gang_point,
  62. header: {
  63. 'Authorization': wx.getStorageSync('token')
  64. },
  65. method: 'POST',
  66. success(res) {
  67. console.log(res);
  68. if (res.data.code === 1) {
  69. that.setData({
  70. tihuoList: res.data.data
  71. })
  72. } else {
  73. wx.showToast({
  74. title: res.data.msg,
  75. mask: true,
  76. icon: 'none'
  77. })
  78. }
  79. },
  80. fail(err) {
  81. wx.showToast({
  82. title: '发起网络请求失败',
  83. icon: 'none',
  84. mask: true
  85. })
  86. },
  87. complete() {
  88. wx.hideLoading()
  89. }
  90. })
  91. } else if (that.data.type === 1) {
  92. wx.request({
  93. url: api.Address_list,
  94. header: {
  95. 'Authorization': wx.getStorageSync('token')
  96. },
  97. method: 'POST',
  98. success(res) {
  99. console.log(res);
  100. if (res.data.code === 1) {
  101. that.setData({
  102. addressList: res.data.data
  103. })
  104. } else {
  105. wx.showToast({
  106. title: res.data.msg,
  107. mask: true,
  108. icon: 'none'
  109. })
  110. }
  111. },
  112. fail(err) {
  113. wx.showToast({
  114. title: '发起网络请求失败',
  115. icon: 'none',
  116. mask: true
  117. })
  118. },
  119. complete() {
  120. wx.hideLoading()
  121. }
  122. })
  123. }
  124. },
  125. /**
  126. * 生命周期函数--监听页面隐藏
  127. */
  128. onHide: function () {
  129. },
  130. /**
  131. * 生命周期函数--监听页面卸载
  132. */
  133. onUnload: function () {
  134. },
  135. /**
  136. * 页面相关事件处理函数--监听用户下拉动作
  137. */
  138. onPullDownRefresh: function () {
  139. },
  140. /**
  141. * 页面上拉触底事件的处理函数
  142. */
  143. onReachBottom: function () {
  144. },
  145. /**
  146. * 用户点击右上角分享
  147. */
  148. onShareAppMessage: function () {
  149. },
  150. // 新增提货地点
  151. addDeliveryAddress() {
  152. // console.log('新增提货地点');
  153. wx.navigateTo({
  154. url: '/pages/adddeliveryaddress/adddeliveryaddress?type=add',
  155. })
  156. },
  157. // 编辑提货地点
  158. editDeliveryAddress(e) {
  159. let index = e.currentTarget.dataset.index;
  160. let address = this.data.tihuoList[index];
  161. wx.setStorageSync('address', address);
  162. wx.navigateTo({
  163. url: '/pages/adddeliveryaddress/adddeliveryaddress?type=edit',
  164. })
  165. },
  166. // 新增收货地点
  167. addReceiptAddress() {
  168. // console.log('新增收货地点');
  169. wx.navigateTo({
  170. url: '/pages/addaddress/addaddress?type=add',
  171. })
  172. },
  173. // 编辑收货地点
  174. editAddress(e) {
  175. let index = e.currentTarget.dataset.index
  176. // console.log(e.currentTarget.dataset.index);
  177. let address = this.data.addressList[index];
  178. wx.setStorageSync('address', address);
  179. wx.navigateTo({
  180. url: '/pages/addaddress/addaddress?type=edit',
  181. })
  182. }
  183. })