myPackage.vue 5.3 KB

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