addressManagement.vue 4.0 KB

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