list.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <view class="app-container">
  3. <view class="list-container">
  4. <block v-for="(item, index) in addressList" :key='index'>
  5. <view class="item" @tap="chooseAddress(index)">
  6. <view class="top">
  7. <view class="left">
  8. <view class="name">{{item.name}}</view>
  9. <view class="phone">{{item.phone}}</view>
  10. <view class="default" v-if="item.defaultAddr">默认</view>
  11. </view>
  12. <image class="right" src="@/static/icon/edit.png" @tap.stop="toEditAddress(item.userAddressId)"></image>
  13. </view>
  14. <view class="bottom">{{item.province}}{{item.city}}{{item.area}}{{item.street}}{{item.address}}{{item.houseNo}}</view>
  15. </view>
  16. </block>
  17. </view>
  18. <no-data v-if="!addressList.length" :showText="'暂无收货地址'"></no-data>
  19. <view class="bottom-container">
  20. <view class="button red" @tap="toAddAddress">新增收货地址</view>
  21. <view class="button white" @tap="getWxAddress">获取收货地址</view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import {mapState} from 'vuex';
  27. import EventBus from '@/utils/eventbus.js';
  28. export default {
  29. data() {
  30. return {
  31. addressList: [], // 收货地址列表
  32. isChoose: false, // 是否进来选择地址
  33. }
  34. },
  35. computed:{
  36. ...mapState(['userInfo', 'isLogin', 'userId'])
  37. },
  38. onShow() {
  39. this.getAddressList();
  40. },
  41. onLoad({isChoose}) {
  42. this.isChoose = isChoose;
  43. },
  44. methods: {
  45. // 获取收货地址列表
  46. getAddressList() {
  47. this.$axios({
  48. url: '/user/address/list',
  49. method: 'get',
  50. params: {
  51. pageNum: 1,
  52. pageSize: 100,
  53. userId: this.userId
  54. }
  55. }).then(res => {
  56. this.addressList = res.data.records;
  57. })
  58. },
  59. // 选择地址
  60. chooseAddress(index) {
  61. if(!this.isChoose) {
  62. return false;
  63. }
  64. EventBus.$emit('chooseAddress', this.addressList[index]);
  65. uni.navigateBack({
  66. delta: 1
  67. })
  68. },
  69. // 获取微信收货地址
  70. getWxAddress() {
  71. let that = this;
  72. uni.chooseAddress({
  73. success(res) {
  74. let params = {
  75. userId: that.userId,
  76. name: res.userName,
  77. phone: res.telNumber,
  78. province: res.provinceName,
  79. city: res.cityName,
  80. area: res.countyName,
  81. address: res.detailInfo,
  82. houseNo: '',
  83. }
  84. uni.navigateTo({
  85. url: '/pages/mine/address/form?addressData=' + JSON.stringify(params)
  86. })
  87. // that.$axios({
  88. // url: '/user/address/save',
  89. // type: 'application/json',
  90. // params,
  91. // isLoading: 1,
  92. // }).then(res => {
  93. // that.getAddressList();
  94. // that.$successToast('添加成功');
  95. // })
  96. }
  97. })
  98. },
  99. // 去新增收货地址
  100. toAddAddress() {
  101. uni.navigateTo({
  102. url: '/pages/mine/address/form'
  103. })
  104. },
  105. // 去编辑收货地址
  106. toEditAddress(id) {
  107. uni.navigateTo({
  108. url: '/pages/mine/address/form?id=' + id
  109. })
  110. }
  111. }
  112. }
  113. </script>
  114. <style lang="scss">
  115. .app-container {
  116. background: #F4F2F2;
  117. padding: 20rpx;
  118. padding-bottom: 250rpx;
  119. box-sizing: border-box;
  120. }
  121. .list-container {
  122. .item {
  123. background: #FFFFFF;
  124. border-radius: 20rpx;
  125. margin-bottom: 20rpx;
  126. padding: 20rpx;
  127. .top {
  128. display: flex;
  129. justify-content: space-between;
  130. align-items: center;
  131. .left {
  132. display: flex;
  133. align-items: flex-end;
  134. .name {
  135. font-size: 32rpx;
  136. color: #333333;
  137. line-height: 32rpx;
  138. }
  139. .phone {
  140. font-size: 28rpx;
  141. color: #666666;
  142. margin-left: 20rpx;
  143. line-height: 28rpx;
  144. }
  145. .default {
  146. font-size: 22rpx;
  147. color: #FFFFFF;
  148. background: #FE781F;
  149. padding: 6rpx 8rpx;
  150. line-height: 20rpx;
  151. margin-left: 20rpx;
  152. }
  153. }
  154. .right {
  155. width: 32rpx;
  156. height: 32rpx;
  157. }
  158. }
  159. .bottom {
  160. font-size: 28rpx;
  161. color: #333333;
  162. line-height: 38rpx;
  163. margin-top: 20rpx;
  164. }
  165. }
  166. }
  167. .bottom-container {
  168. position: fixed;
  169. bottom: 0;
  170. left: 0;
  171. width: 100%;
  172. box-sizing: border-box;
  173. padding: 20rpx 20rpx 60rpx;
  174. background: #F4F2F2;
  175. .button {
  176. width: 100%;
  177. height: 72rpx;
  178. border-radius: 72rpx;
  179. text-align: center;
  180. line-height: 72rpx;
  181. &.red {
  182. background: #FF3F42;
  183. color: #FFFFFF;
  184. margin-bottom: 20rpx;
  185. }
  186. &.white {
  187. background: #FFFFFF;
  188. color: #333333;
  189. }
  190. }
  191. }
  192. </style>