addressManagement.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <view>
  3. <view class="top-tab">
  4. <view :class="{ select: manage == 1 }" @click="switchTab(1)">
  5. {{ i18n.inland }}
  6. </view>
  7. <view :class="{ select: manage == 0 }" @click="switchTab(0)">
  8. {{ i18n.international }}
  9. </view>
  10. </view>
  11. <view class="content" v-if="addressList.length != 0">
  12. <addressVue
  13. @deleteAddress="deleteAddress"
  14. @setDefault="setDefault"
  15. @toDetail="toDetail"
  16. v-for="item in addressList"
  17. :itemInfo="item"
  18. :key="item.id"
  19. />
  20. </view>
  21. <view class="empty" v-else> 空空如也~ </view>
  22. <view class="footer" v-if="manage == 1">
  23. <button class="wx">{{ i18n.wx }}</button>
  24. <button
  25. class="add"
  26. @click="toAddRess('/pageC/addEditAddress/addEditAddress')"
  27. >
  28. {{ i18n.add }}
  29. </button>
  30. </view>
  31. <view class="footer" v-else>
  32. <button
  33. class="add-international"
  34. @click="toAddRess('/pageC/internationalAddress/internationalAddress')"
  35. >
  36. {{ i18n.add }}
  37. </button>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. import addressVue from "./component/address.vue";
  43. export default {
  44. components: {
  45. addressVue,
  46. },
  47. data() {
  48. return {
  49. manage: 1,
  50. addressList: [],
  51. };
  52. },
  53. computed: {
  54. i18n() {
  55. return this.$t("index");
  56. },
  57. },
  58. methods: {
  59. switchTab(num) {
  60. this.manage = num;
  61. this.getAddressList(num);
  62. },
  63. //设置默认地址
  64. setDefault(value) {
  65. uni.$u.http
  66. .post(`/api/address/default/${value.id}`)
  67. .then((res) => {
  68. this.getAddressList(this.manage);
  69. })
  70. .catch(() => {});
  71. },
  72. //跳转地址详情页
  73. toDetail(id) {
  74. if (this.manage) {
  75. uni.navigateTo({
  76. url: `/pageC/addEditAddress/addEditAddress?id=${id}`,
  77. });
  78. } else {
  79. uni.navigateTo({
  80. url: `/pageC/internationalAddress/internationalAddress?id=${id}`,
  81. });
  82. }
  83. },
  84. //删除地址
  85. deleteAddress(value) {
  86. uni.$u.http.delete(`/api/address/${value.id}`).then((res) => {
  87. this.getAddressList(this.manage);
  88. });
  89. },
  90. toAddRess(url) {
  91. uni.navigateTo({
  92. url,
  93. });
  94. },
  95. getAddressList(num) {
  96. uni.$u.http
  97. .get(
  98. `/api/address?is_page=0&page=1&limit=10&is_domestic=${num}&is_default=`
  99. )
  100. .then((res) => {
  101. this.addressList = res;
  102. });
  103. },
  104. },
  105. onShow() {
  106. this.getAddressList(this.manage);
  107. },
  108. mounted() {
  109. // this.getAddressList(1);
  110. uni.setNavigationBarTitle({
  111. title: this.i18n.address,
  112. });
  113. },
  114. };
  115. </script>
  116. <style scoped lang="scss">
  117. .top-tab {
  118. display: flex;
  119. font-size: 32rpx;
  120. color: rgba(34, 34, 34, 0.8);
  121. justify-content: space-around;
  122. background-color: #fff;
  123. height: 80rpx;
  124. align-items: center;
  125. .select {
  126. position: relative;
  127. font-weight: 600;
  128. }
  129. .select::before {
  130. content: "";
  131. display: block;
  132. width: 50%;
  133. height: 4rpx;
  134. background-color: #f83224;
  135. position: absolute;
  136. bottom: -20rpx;
  137. left: 50%;
  138. transform: translate(-50%, -50%);
  139. }
  140. }
  141. .content {
  142. padding: 20rpx 24rpx;
  143. padding-bottom: 200rpx;
  144. }
  145. .empty {
  146. font-size: 28rpx;
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. color: rgba(51, 51, 51, 0.7);
  151. margin-top: 200rpx;
  152. }
  153. .footer {
  154. position: fixed;
  155. bottom: 0;
  156. background-color: #fff;
  157. display: flex;
  158. justify-content: space-around;
  159. width: 750rpx;
  160. padding: 20rpx 0 66rpx;
  161. .wx {
  162. width: 338rpx;
  163. background-color: #fff;
  164. border-radius: 40rpx;
  165. height: 80rpx;
  166. font-size: 32rpx;
  167. color: #222;
  168. padding: 0;
  169. margin: 0;
  170. border: 2rpx solid #979797;
  171. }
  172. .add {
  173. width: 338rpx;
  174. background-color: #f83224;
  175. border-radius: 40rpx;
  176. height: 80rpx;
  177. font-size: 32rpx;
  178. color: #fff;
  179. padding: 0;
  180. margin: 0;
  181. }
  182. .add-international {
  183. width: 702rpx;
  184. background-color: #f83224;
  185. border-radius: 40rpx;
  186. height: 80rpx;
  187. font-size: 32rpx;
  188. color: #fff;
  189. margin: 0 auto;
  190. }
  191. }
  192. </style>