index.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. import { getAddressList, setAddressDefault, delAddress, editAddress} from '../../api/user.js';
  2. var app = getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. parameter: {
  9. 'navbar': '1',
  10. 'return': '1',
  11. 'title': '地址管理'
  12. },
  13. addressList:[],
  14. cartId:'',
  15. pinkId:0,
  16. couponId:0,
  17. loading:false,
  18. loadend:false,
  19. loadTitle:'加载更多',
  20. page:1,
  21. limit:8,
  22. },
  23. /**
  24. * 生命周期函数--监听页面加载
  25. */
  26. onLoad: function (options) {
  27. this.setData({
  28. cartId: options.cartId || '',
  29. pinkId: options.pinkId || 0,
  30. couponId: options.couponId || 0,
  31. })
  32. },
  33. onShow:function(){
  34. var that = this;
  35. if (app.globalData.isLog) that.getAddressList(true);
  36. },
  37. onLoadFun:function(){
  38. this.getAddressList();
  39. },
  40. /*
  41. * 导入微信地址
  42. */
  43. getWxAddress: function () {
  44. var that = this;
  45. wx.authorize({
  46. scope: 'scope.address',
  47. success: function (res) {
  48. wx.chooseAddress({
  49. success: function (res) {
  50. var addressP = {};
  51. addressP.province = res.provinceName;
  52. addressP.city = res.cityName;
  53. addressP.district = res.countyName;
  54. editAddress({
  55. address: addressP,
  56. is_default: 1,
  57. real_name: res.userName,
  58. post_code: res.postalCode,
  59. phone: res.telNumber,
  60. detail: res.detailInfo,
  61. id: 0
  62. }).then(res=>{
  63. app.Tips({ title: "添加成功", icon: 'success' }, function () {
  64. that.getAddressList(true);
  65. });
  66. }).catch(err=>{
  67. return app.Tips({title:err});
  68. });
  69. },
  70. fail: function (res) {
  71. if (res.errMsg == 'chooseAddress:cancel') return app.Tips({ title:'取消选择'});
  72. },
  73. })
  74. },
  75. fail: function (res) {
  76. wx.showModal({
  77. title: '您已拒绝导入微信地址权限',
  78. content:'是否进入权限管理,调整授权?',
  79. success(res) {
  80. if (res.confirm) {
  81. wx.openSetting({
  82. success: function (res) {
  83. console.log(res.authSetting)
  84. }
  85. });
  86. } else if (res.cancel){
  87. return app.Tips({ title: '已取消!' });
  88. }
  89. }
  90. })
  91. },
  92. })
  93. },
  94. /**
  95. * 获取地址列表
  96. *
  97. */
  98. getAddressList: function (isPage){
  99. var that=this;
  100. if (isPage) that.setData({ loadend: false, page: 1, addressList:[]});
  101. if (that.data.loading) return;
  102. if (that.data.loadend) return;
  103. that.setData({ loading:true,loadTitle:''});
  104. getAddressList({ page: that.data.page, limit: that.data.limit }).then(res=>{
  105. var list = res.data;
  106. var loadend = list.length < that.data.limit;
  107. that.data.addressList = app.SplitArray(list, that.data.addressList);
  108. that.setData({
  109. addressList: that.data.addressList,
  110. loadend: loadend,
  111. loadTitle: loadend ? '我也是有底线的' : '加载更多',
  112. page: that.data.page + 1,
  113. loading: false,
  114. });
  115. }).catch(err=>{
  116. that.setData({ loading: false, loadTitle: '加载更多' });
  117. });
  118. },
  119. /**
  120. * 设置默认地址
  121. */
  122. radioChange:function(e){
  123. var index = parseInt(e.detail.value),that=this;;
  124. var address = this.data.addressList[index];
  125. if (address==undefined) return app.Tips({title:'您设置的默认地址不存在!'});
  126. setAddressDefault(address.id).then(res=>{
  127. for (var i = 0, len = that.data.addressList.length; i < len; i++) {
  128. if (i == index) that.data.addressList[i].is_default = true;
  129. else that.data.addressList[i].is_default = false;
  130. }
  131. app.Tips({ title: '设置成功', icon: 'success' }, function () {
  132. that.setData({ addressList: that.data.addressList });
  133. });
  134. }).catch(err=>{
  135. return app.Tips({title:err});
  136. });
  137. },
  138. /**
  139. * 编辑地址
  140. */
  141. editAddress:function(e){
  142. var cartId = this.data.cartId,pinkId = this.data.pinkId,couponId = this.data.couponId;
  143. this.setData({cartId: '',pinkId: '',couponId: ''})
  144. wx.navigateTo({
  145. url: '/pages/user_address/index?id=' + e.currentTarget.dataset.id + '&cartId=' + cartId + '&pinkId=' + pinkId + '&couponId=' + couponId
  146. })
  147. },
  148. /**
  149. * 删除地址
  150. */
  151. delAddress:function(e){
  152. var index = e.currentTarget.dataset.index, that = this, address=this.data.addressList[index];
  153. if (address == undefined) return app.Tips({ title: '您删除的地址不存在!' });
  154. delAddress(address.id).then(res=>{
  155. app.Tips({ title: '删除成功', icon: 'success' }, function () {
  156. that.data.addressList.splice(index, 1);
  157. that.setData({ addressList: that.data.addressList });
  158. });
  159. }).catch(err=>{
  160. return app.Tips({title:err});
  161. });
  162. },
  163. /**
  164. * 新增地址
  165. */
  166. addAddress: function () {
  167. var cartId = this.data.cartId,pinkId = this.data.pinkId,couponId = this.data.couponId;
  168. this.setData({ cartId: '', pinkId: '', couponId: ''})
  169. wx.navigateTo({
  170. url: '/pages/user_address/index?cartId=' + cartId + '&pinkId=' + pinkId + '&couponId=' + couponId
  171. })
  172. },
  173. goOrder:function(e){
  174. var id = e.currentTarget.dataset.id;
  175. var cartId = '';
  176. var pinkId = '';
  177. var couponId = '';
  178. if (this.data.cartId && id) {
  179. cartId = this.data.cartId;
  180. pinkId = this.data.pinkId;
  181. couponId = this.data.couponId;
  182. this.setData({
  183. cartId: '',
  184. pinkId: '',
  185. couponId: '',
  186. })
  187. wx.redirectTo({
  188. url: '/pages/order_confirm/index?is_address=1&cartId=' + cartId + '&addressId=' + id + '&pinkId=' + pinkId + '&couponId=' + couponId
  189. })
  190. }
  191. },
  192. /**
  193. * 页面上拉触底事件的处理函数
  194. */
  195. onReachBottom: function () {
  196. this.getAddressList();
  197. }
  198. })