list.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <!-- 地址列表 -->
  2. <template>
  3. <view class="address-wrap">
  4. <view class="address-list" v-for="address in addressList" :key="address.id" @tap="useAddress(address)">
  5. <view class="top u-flex">
  6. <text class="name">{{ address.consignee }}</text>
  7. <text class="phone">{{ address.phone }}</text>
  8. <text class="tag" v-show="address.is_default === '1'">默认</text>
  9. </view>
  10. <view class="detail">{{ address.province_name }}{{ address.city_name }}{{ address.area_name }}{{ address.address }}</view>
  11. <button class="u-reset-button set-btn" @tap.stop="jump('/pages/user/address/edit', { id: address.id })">编辑</button>
  12. </view>
  13. <view class="foot_box-wrap safe-area-inset-bottom">
  14. <view class="foot_box u-flex u-row-between safe-area-inset-bottom">
  15. <!-- 微信小程序和微信H5 -->
  16. <button
  17. class="u-reset-button sync-wxaddress u-m-20 u-flex u-row-center u-col-center"
  18. @tap="getWXaddress"
  19. v-show="platform == 'wxMiniProgram' || platform == 'wxOfficialAccount'"
  20. >
  21. <text class="u-iconfont uicon-weixin-fill u-p-r-10" style="color:#09bb07;font-size: 40rpx;"></text>
  22. 导入微信地址
  23. </button>
  24. <button class="u-reset-button add-btn u-m-20" @tap="jump('/pages/user/address/edit')">添加新的收货地址</button>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import Auth from '@/shopro/permission/index.js';
  31. export default {
  32. components: {},
  33. data() {
  34. return {
  35. addressList: [],
  36. platform: this.$platform.get()
  37. };
  38. },
  39. computed: {},
  40. onLoad() {},
  41. onShow() {
  42. this.getAddressList();
  43. },
  44. methods: {
  45. // 选中
  46. useAddress(addressData) {
  47. uni.$emit('SELECT_ADDRESS', { addressData: JSON.stringify(addressData) });
  48. uni.navigateBack()
  49. },
  50. // 路由跳转
  51. jump(path, parmas) {
  52. this.$Router.push({
  53. path: path,
  54. query: parmas
  55. });
  56. },
  57. // 微信导入
  58. getWXaddress() {
  59. let authState = new Auth('address').check();
  60. // #ifdef MP
  61. authState &&
  62. uni.chooseAddress({
  63. success: res => {
  64. this.jump('/pages/user/address/edit', { addressData: res });
  65. },
  66. fail: err => {
  67. console.log('%cuni.chooseAddress,调用失败', 'color:green;background:yellow');
  68. }
  69. });
  70. // #endif
  71. // #ifdef H5
  72. this.$wxsdk.openAddress(res => {
  73. this.jump('/pages/user/address/edit', { addressData: res });
  74. });
  75. // #endif
  76. },
  77. getAddressList() {
  78. this.$http('address.list').then(res => {
  79. if (res.code === 1) {
  80. this.addressList = res.data;
  81. !this.addressList.length && uni.$emit('SELECT_ADDRESS', { addressData: null });
  82. }
  83. });
  84. }
  85. }
  86. };
  87. </script>
  88. <style lang="scss">
  89. .address-list {
  90. padding: 40rpx;
  91. position: relative;
  92. background: #fff;
  93. margin-bottom: 20rpx;
  94. .name {
  95. font-size: 30rpx;
  96. font-weight: 600;
  97. }
  98. .phone {
  99. font-size: 30rpx;
  100. margin: 0 20rpx;
  101. }
  102. .tag {
  103. background: rgba(233, 191, 113, 0.2);
  104. border-radius: 6rpx;
  105. padding: 0 16rpx;
  106. line-height: 38rpx;
  107. color: #a8700d;
  108. font-size: 22rpx;
  109. }
  110. .detail {
  111. margin-top: 25rpx;
  112. width: 543rpx;
  113. font-size: 26rpx;
  114. font-weight: 400;
  115. color: rgba(153, 153, 153, 1);
  116. line-height: 40rpx;
  117. }
  118. .set-btn {
  119. background: none;
  120. position: absolute;
  121. font-size: 26rpx;
  122. color: #a8700d;
  123. top: 40rpx;
  124. right: 40rpx;
  125. }
  126. }
  127. // 底部按钮
  128. .foot_box-wrap {
  129. height: 140rpx;
  130. width: 100%;
  131. }
  132. .foot_box {
  133. padding: 10rpx 20rpx;
  134. position: fixed;
  135. bottom: 0;
  136. left: 0;
  137. width: 100%;
  138. background-color: #fff;
  139. border-top: 1rpx solid rgba(#ccc, 0.2);
  140. .sync-wxaddress {
  141. flex: 1;
  142. line-height: 80rpx;
  143. background: rgba(255, 255, 255, 1);
  144. border-radius: 40rpx;
  145. box-shadow: 0 0 1rpx 6rpx rgba(#ccc, 0.2);
  146. }
  147. .add-btn {
  148. line-height: 80rpx;
  149. flex: 1;
  150. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  151. border-radius: 40rpx;
  152. color: rgba(#fff, 0.9);
  153. }
  154. }
  155. </style>