index.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. import { editAddress, getAddressDetail} from '../../api/user.js';
  2. import { setFormId } from '../../api/api.js';
  3. var app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. parameter: {
  10. 'navbar': '1',
  11. 'return': '1',
  12. 'title': '添加地址'
  13. },
  14. region: ['省', '市', '区'],
  15. cartId:'',//购物车id
  16. pinkId:0,//拼团id
  17. couponId:0,//优惠券id
  18. id:0,//地址id
  19. userAddress: { is_default:false},//地址详情
  20. },
  21. /**
  22. * 授权回调
  23. *
  24. */
  25. onLoadFun:function(){
  26. this.getUserAddress();
  27. },
  28. /**
  29. * 生命周期函数--监听页面加载
  30. */
  31. onLoad: function (options) {
  32. this.setData({
  33. cartId: options.cartId || '',
  34. pinkId: options.pinkId || 0,
  35. couponId: options.couponId || 0,
  36. id: options.id || 0,
  37. 'parameter.title': options.id ? '修改地址' : '添加地址'
  38. });
  39. },
  40. bindRegionChange: function (e) {
  41. console.log('picker发送选择改变,携带值为', e.detail.value)
  42. this.setData({
  43. region: e.detail.value
  44. })
  45. },
  46. getUserAddress:function(){
  47. if(!this.data.id) return false;
  48. var that=this;
  49. getAddressDetail(this.data.id).then(res=>{
  50. var region = [res.data.province, res.data.city, res.data.district];
  51. that.setData({
  52. userAddress: res.data,
  53. region: region,
  54. });
  55. });
  56. },
  57. getWxAddress:function(){
  58. var that = this;
  59. wx.authorize({
  60. scope: 'scope.address',
  61. success: function (res) {
  62. wx.chooseAddress({
  63. success: function (res) {
  64. var addressP = {};
  65. addressP.province = res.provinceName;
  66. addressP.city = res.cityName;
  67. addressP.district = res.countyName;
  68. editAddress({
  69. address: addressP,
  70. is_default: 1,
  71. real_name: res.userName,
  72. post_code: res.postalCode,
  73. phone: res.telNumber,
  74. detail: res.detailInfo,
  75. id: 0
  76. }).then(res => {
  77. setTimeout(function () {
  78. if (that.data.cartId) {
  79. var cartId = that.data.cartId;
  80. var pinkId = that.data.pinkId;
  81. var couponId = that.data.couponId;
  82. that.setData({ cartId: '', pinkId: '', couponId: '' })
  83. wx.navigateTo({
  84. url: '/pages/order_confirm/index?cartId=' + cartId + '&addressId=' + (that.data.id ? that.data.id : res.data.id) + '&pinkId=' + pinkId + '&couponId=' + couponId
  85. });
  86. } else {
  87. wx.navigateBack({ delta: 1 });
  88. }
  89. }, 1000);
  90. return app.Tips({ title: "添加成功", icon: 'success' });
  91. }).catch(err => {
  92. return app.Tips({ title: err });
  93. });
  94. },
  95. fail: function (res) {
  96. if (res.errMsg == 'chooseAddress:cancel') return app.Tips({ title: '取消选择' });
  97. },
  98. })
  99. },
  100. fail: function (res) {
  101. wx.showModal({
  102. title: '您已拒绝导入微信地址权限',
  103. content: '是否进入权限管理,调整授权?',
  104. success(res) {
  105. if (res.confirm) {
  106. wx.openSetting({
  107. success: function (res) {
  108. console.log(res.authSetting)
  109. }
  110. });
  111. } else if (res.cancel) {
  112. return app.Tips({ title: '已取消!' });
  113. }
  114. }
  115. })
  116. },
  117. })
  118. },
  119. /**
  120. * 提交用户添加地址
  121. *
  122. */
  123. formSubmit:function(e){
  124. var that = this, value = e.detail.value, formId=e.detail.formId;
  125. if (!value.real_name) return app.Tips({title:'请填写收货人姓名'});
  126. if (!value.phone) return app.Tips({title:'请填写联系电话'});
  127. if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(value.phone)) return app.Tips({title:'请输入正确的手机号码'});
  128. if (that.data.region[0] =='省') return app.Tips({title:'请选择所在地区'});
  129. if (!value.detail) return app.Tips({title:'请填写详细地址'});
  130. value.id=that.data.id;
  131. value.address={
  132. province:that.data.region[0],
  133. city: that.data.region[1],
  134. district: that.data.region[2],
  135. };
  136. value.is_default = that.data.userAddress.is_default ? 1 : 0;
  137. setFormId(formId)
  138. editAddress(value).then(res=>{
  139. if (that.data.id)
  140. app.Tips({ title: '修改成功', icon: 'success' });
  141. else
  142. app.Tips({ title: '添加成功', icon: 'success' });
  143. setTimeout(function () {
  144. if (that.data.cartId) {
  145. var cartId = that.data.cartId;
  146. var pinkId = that.data.pinkId;
  147. var couponId = that.data.couponId;
  148. that.setData({ cartId: '', pinkId: '', couponId: '' })
  149. wx.navigateTo({
  150. url: '/pages/order_confirm/index?cartId=' + cartId + '&addressId=' + (that.data.id ? that.data.id : res.data.id) + '&pinkId=' + pinkId + '&couponId=' + couponId
  151. });
  152. } else {
  153. wx.navigateBack({ delta: 1 });
  154. }
  155. }, 1000);
  156. }).catch(err=>{
  157. return app.Tips({title:err});
  158. })
  159. },
  160. ChangeIsDefault:function(e){
  161. this.setData({ 'userAddress.is_default': !this.data.userAddress.is_default});
  162. },
  163. })