myPackage.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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">
  44. <image
  45. class="prompt-icon"
  46. src="../../static/mine/336.png"
  47. mode=""
  48. ></image>
  49. 当前页面加载的订单总重量{{ weights }}kg
  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: 0,
  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. onShow() {
  84. this.getPackageList(1);
  85. this.getNum();
  86. },
  87. methods: {
  88. tabSwitch(num) {
  89. this.page = 1;
  90. this.follow = num;
  91. this.getPackageList(1);
  92. },
  93. toInformation(value) {
  94. if (value.status == "imperfect") {
  95. return;
  96. }
  97. uni.navigateTo({
  98. url: `/pageD/orderInformation/orderInformation?orderStatus=${value.id}`,
  99. });
  100. },
  101. //获取每个状态数量
  102. getNum() {
  103. uni.$u.http.get(`/api/express-order/status-count`).then((res) => {
  104. this.statusNum = res;
  105. });
  106. },
  107. //获取订单列表,默认获取发往中转点的包裹,
  108. getPackageList(value) {
  109. uni.$u.http
  110. .get(
  111. `/api/express-order?container_id=${this.containerId}&status_collection=${this.follow}&order_no=${this.orderId}&page=${this.page}&limit=10`
  112. )
  113. .then((res) => {
  114. if (value == 1) {
  115. this.weights = 0; //所有包裹重量
  116. this.orderList = res.data;
  117. } else {
  118. this.orderList = this.orderList.concat(res.data);
  119. }
  120. //将获取到的包裹重量相加
  121. this.orderList.map((item) => {
  122. this.weights += Number(item.actual_weight);
  123. });
  124. this.total = res.total;
  125. });
  126. },
  127. },
  128. onReachBottom() {
  129. //商品总数量小于当前获取到的商品数量
  130. if (this.total > this.orderList.length) {
  131. this.page++;
  132. this.getPackageList(0);
  133. }
  134. },
  135. created() {
  136. // this.getPackageList(1);
  137. uni.setNavigationBarTitle({
  138. title: this.i18n.myPackage,
  139. });
  140. },
  141. };
  142. </script>
  143. <style lang="scss" scoped>
  144. .top-search {
  145. background-color: #fff;
  146. padding: 20rpx 24rpx;
  147. }
  148. /deep/.u-input {
  149. background-color: #f4f4f4;
  150. }
  151. .top-tab {
  152. margin-top: 10rpx;
  153. display: flex;
  154. justify-content: space-between;
  155. overflow-y: auto;
  156. // flex-shrink: 1;
  157. width: 100vw;
  158. .tab {
  159. margin-right: 40rpx;
  160. font-size: 26rpx;
  161. color: #555;
  162. flex-shrink: 0;
  163. height: 44rpx;
  164. display: flex;
  165. align-items: flex-end;
  166. font-size: 32rpx;
  167. }
  168. .commodity {
  169. position: relative;
  170. font-weight: 600;
  171. color: #222;
  172. }
  173. .commodity::before {
  174. content: "";
  175. display: block;
  176. height: 8rpx;
  177. width: 100%;
  178. background: linear-gradient(to right, #f83224, #fff);
  179. position: absolute;
  180. bottom: 5rpx;
  181. opacity: 0.8;
  182. }
  183. }
  184. .content {
  185. padding: 20rpx 24rpx;
  186. .prompt {
  187. background-color: #fbe8e6;
  188. border-radius: 10rpx;
  189. padding: 16rpx 22rpx;
  190. font-size: 24rpx;
  191. display: flex;
  192. align-items: center;
  193. color: #f83224;
  194. .prompt-icon {
  195. width: 36rpx;
  196. height: 36rpx;
  197. margin-right: 20rpx;
  198. }
  199. }
  200. }
  201. </style>