addressManagement.vue 4.6 KB

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