123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <view>
- <view class="top-search">
- <u--input
- :placeholder="i18n.orderNum"
- prefixIcon="search"
- shape="circle"
- @change="getPackageList(1)"
- v-model="orderId"
- prefixIconStyle="font-size: 22px;color: #909399;background: #f4f4f4;"
- ></u--input>
- <view class="top-tab">
- <view
- :class="{ commodity: follow == 'to_transit' }"
- class="tab"
- @click="tabSwitch('to_transit')"
- >
- {{ i18n.deliver }}{{ statusNum.to_transit }}
- </view>
- <view
- :class="{ commodity: follow == 'transit_receipt' }"
- class="tab"
- @click="tabSwitch('transit_receipt')"
- >
- {{ i18n.Sign }} {{ statusNum.transit_receipt }}
- </view>
- <view
- :class="{ commodity: follow == 'to_overseas' }"
- class="tab"
- @click="tabSwitch('to_overseas')"
- >
- {{ i18n.overseas }} {{ statusNum.to_overseas }}
- </view>
- <view
- :class="{ commodity: follow == 'other' }"
- class="tab"
- @click="tabSwitch('other')"
- >
- {{ i18n.other }} {{ statusNum.other }}
- </view>
- </view>
- </view>
- <view class="content">
- <view class="prompt">
- <image
- class="prompt-icon"
- src="../../static/mine/336.png"
- mode=""
- ></image>
- {{ i18n.orderWeight }}{{ weights }}kg
- </view>
- <view v-for="item in orderList" :key="item.orderStatus">
- <PackageCard
- :itemInfo="item"
- @toInformation="toInformation"
- @freeze="freeze"
- :language="language"
- />
- </view>
- </view>
- </view>
- </template>
- <script>
- import PackageCard from "./component/packageCard.vue";
- export default {
- components: {
- PackageCard,
- },
- data() {
- return {
- follow: "to_transit",
- weights: 0,
- orderId: "",
- containerId: "",
- statusNum: {},
- page: 1,
- orderList: [],
- limit: 10,
- language: this.language, //当前选择的语言
- };
- },
- computed: {
- i18n() {
- return this.$t("index");
- },
- },
- onLoad(options) {
- this.follow = options.type || "to_transit";
- },
- onShow() {
- this.page = 1;
- this.getPackageList(1);
- this.getPackageWeight();
- this.getNum();
- },
- methods: {
- tabSwitch(num) {
- this.page = 1;
- this.follow = num;
- this.getPackageList(1);
- this.getPackageWeight();
- },
- toInformation(value) {
- if (value.status == "imperfect") {
- return;
- }
- uni.navigateTo({
- url: `/pageD/orderInformation/orderInformation?orderStatus=${value.id}`,
- });
- },
- //获取每个状态数量
- getNum() {
- uni.$u.http.get(`/api/express-order/status-count`).then((res) => {
- this.statusNum = res;
- });
- },
- //获取订单列表,默认获取发往中转点的包裹,
- getPackageList(value) {
- uni.$u.http
- .get(
- `/api/express-order?container_id=${this.containerId}&status_collection=${this.follow}&order_no=${this.orderId}&page=${this.page}&limit=${this.limit}`
- )
- .then((res) => {
- if (value == 1) {
- this.orderList = res.data;
- } else {
- this.orderList = this.orderList.concat(res.data);
- }
- this.total = res.total;
- });
- },
- //获取包裹重量
- getPackageWeight() {
- uni.$u.http
- .get(`/api/express-order/weight?status=${this.follow}`)
- .then((res) => {
- this.weights = res.weight;
- });
- },
- //冻结
- freeze(itemInfo) {
- uni.$u.http
- .post(`/api/express-order/froze/${itemInfo.id}`)
- .then((res) => {
- this.limit = this.page * this.limit;
- this.page = 1;
- this.getPackageList(1);
- uni.showToast({
- title: itemInfo.is_frozen == 0 ? "已冻结" : "已恢复",
- icon: "none",
- });
- });
- },
- },
- onReachBottom() {
- //商品总数量小于当前获取到的商品数量
- if (this.total > this.orderList.length) {
- this.page++;
- this.getPackageList(0);
- }
- },
- created() {
- // this.getPackageList(1);
- uni.setNavigationBarTitle({
- title: this.i18n.myPackage,
- });
- },
- };
- </script>
- <style lang="scss" scoped>
- .top-search {
- background-color: #fff;
- padding: 20rpx 24rpx;
- }
- /deep/.u-input {
- background-color: #f4f4f4;
- }
- .top-tab {
- margin-top: 10rpx;
- display: flex;
- justify-content: space-between;
- overflow-y: auto;
- // flex-shrink: 1;
- width: 100vw;
- .tab {
- margin-right: 40rpx;
- font-size: 26rpx;
- color: #555;
- flex-shrink: 0;
- height: 44rpx;
- display: flex;
- align-items: flex-end;
- font-size: 32rpx;
- }
- .commodity {
- position: relative;
- font-weight: 600;
- color: #222;
- }
- .commodity::before {
- content: "";
- display: block;
- height: 8rpx;
- width: 100%;
- background: linear-gradient(to right, #f83224, #fff);
- position: absolute;
- bottom: 5rpx;
- opacity: 0.8;
- }
- }
- .content {
- padding: 20rpx 24rpx;
- .prompt {
- background-color: #fbe8e6;
- border-radius: 10rpx;
- padding: 16rpx 22rpx;
- font-size: 24rpx;
- display: flex;
- align-items: center;
- color: #f83224;
- .prompt-icon {
- width: 36rpx;
- height: 36rpx;
- margin-right: 20rpx;
- }
- }
- }
- </style>
|