myPackage.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <view>
  3. <view class="top-search">
  4. <u--input
  5. placeholder="请输入订单编号搜索"
  6. prefixIcon="search"
  7. shape="circle"
  8. v-model="orderId"
  9. prefixIconStyle="font-size: 22px;color: #909399;background: #f4f4f4;"
  10. ></u--input>
  11. <view class="top-tab">
  12. <view
  13. :class="{ commodity: follow == 'to_transit' }"
  14. class="tab"
  15. @click="tabSwitch('to_transit')"
  16. >
  17. 发往中转点{{ statusNum.to_transit }}
  18. </view>
  19. <view
  20. :class="{ commodity: follow == 'transit_receipt' }"
  21. class="tab"
  22. @click="tabSwitch('transit_receipt')"
  23. >
  24. 中转已签收 {{ statusNum.transit_receipt }}
  25. </view>
  26. <view
  27. :class="{ commodity: follow == 'to_overseas' }"
  28. class="tab"
  29. @click="tabSwitch('to_overseas')"
  30. >
  31. 正发往海外 {{ statusNum.to_overseas }}
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 'other' }"
  35. class="tab"
  36. @click="tabSwitch('other')"
  37. >
  38. 其他 {{ statusNum.other }}
  39. </view>
  40. </view>
  41. </view>
  42. <view class="content">
  43. <view class="prompt" v-if="weights >= 300">
  44. <image
  45. class="prompt-icon"
  46. src="../../static/mine/336.png"
  47. mode=""
  48. ></image>
  49. 当前页面加载的订单总重量300kg
  50. </view>
  51. <view v-for="item in orderList" :key="item.orderStatus">
  52. <PackageCard :itemInfo="item" @toInformation="toInformation" />
  53. </view>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. import PackageCard from "./component/packageCard.vue";
  59. export default {
  60. components: {
  61. PackageCard,
  62. },
  63. data() {
  64. return {
  65. follow: "to_transit",
  66. weights: 300,
  67. orderId: "",
  68. containerId: "",
  69. statusNum: {},
  70. page: 1,
  71. orderList: [],
  72. };
  73. },
  74. computed: {
  75. i18n() {
  76. return this.$t("index");
  77. },
  78. },
  79. onLoad(options) {
  80. this.follow = options.type || "to_transit";
  81. this.getPackageList(1);
  82. },
  83. methods: {
  84. tabSwitch(num) {
  85. this.page = 1;
  86. this.follow = num;
  87. this.getPackageList(1);
  88. },
  89. toInformation(value) {
  90. uni.navigateTo({
  91. url: `/pageD/orderInformation/orderInformation?orderStatus=${value.id}`,
  92. });
  93. },
  94. //获取每个状态数量
  95. getNum() {
  96. uni.$u.http.get(`/api/express-order/status-count`).then((res) => {
  97. this.statusNum = res;
  98. });
  99. },
  100. //获取订单列表,默认获取发往中转点的包裹,
  101. getPackageList(value) {
  102. uni.$u.http
  103. .get(
  104. `/api/express-order?container_id=${this.containerId}&status_collection=${this.follow}&order_no=${this.orderId}&page=${this.page}&limit=10`
  105. )
  106. .then((res) => {
  107. if (value == 1) {
  108. this.orderList = res.data;
  109. } else {
  110. this.orderList = this.orderList.concat(res.data);
  111. }
  112. this.total = res.total;
  113. });
  114. },
  115. },
  116. onReachBottom() {
  117. //商品总数量小于当前获取到的商品数量
  118. if (this.total > this.orderList.length) {
  119. this.page++;
  120. this.getPackageList(0);
  121. }
  122. },
  123. created() {
  124. // this.getPackageList(1);
  125. this.getNum();
  126. uni.setNavigationBarTitle({
  127. title: this.i18n.myPackage,
  128. });
  129. },
  130. };
  131. </script>
  132. <style lang="scss" scoped>
  133. .top-search {
  134. background-color: #fff;
  135. padding: 20rpx 24rpx;
  136. }
  137. /deep/.u-input {
  138. background-color: #f4f4f4;
  139. }
  140. .top-tab {
  141. margin-top: 10rpx;
  142. display: flex;
  143. justify-content: space-between;
  144. overflow-y: auto;
  145. // flex-shrink: 1;
  146. width: 100vw;
  147. .tab {
  148. margin-right: 40rpx;
  149. font-size: 26rpx;
  150. color: #555;
  151. flex-shrink: 0;
  152. height: 44rpx;
  153. display: flex;
  154. align-items: flex-end;
  155. font-size: 32rpx;
  156. }
  157. .commodity {
  158. position: relative;
  159. font-weight: 600;
  160. color: #222;
  161. }
  162. .commodity::before {
  163. content: "";
  164. display: block;
  165. height: 8rpx;
  166. width: 100%;
  167. background: linear-gradient(to right, #f83224, #fff);
  168. position: absolute;
  169. bottom: 5rpx;
  170. opacity: 0.8;
  171. }
  172. }
  173. .content {
  174. padding: 20rpx 24rpx;
  175. .prompt {
  176. background-color: #fbe8e6;
  177. border-radius: 10rpx;
  178. padding: 16rpx 22rpx;
  179. font-size: 24rpx;
  180. display: flex;
  181. align-items: center;
  182. color: #f83224;
  183. .prompt-icon {
  184. width: 36rpx;
  185. height: 36rpx;
  186. margin-right: 20rpx;
  187. }
  188. }
  189. }
  190. </style>