|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
<div class="wrap">
|
|
|
<div class="wrap-title">
|
|
|
- <TitleControl title="我的发布" @handleSearch="handleSearch">
|
|
|
+ <TitleControl title="我的订单" @handleSearch="handleSearch">
|
|
|
</TitleControl>
|
|
|
</div>
|
|
|
<div class="wrap-status">
|
|
|
- <div
|
|
|
+ <!-- <div
|
|
|
class="status-item"
|
|
|
v-for="status in status_list"
|
|
|
:class="{
|
|
@@ -17,7 +17,26 @@
|
|
|
@click="changeType(status.value, status.key)"
|
|
|
>
|
|
|
{{ status.label }}
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
+ <el-badge
|
|
|
+ class="status-item"
|
|
|
+ v-for="status in status_list"
|
|
|
+ :value="status.numValue"
|
|
|
+ :hidden="status.numValue == 0"
|
|
|
+ :key="status.value"
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ @click="changeType(status.value, status.key)"
|
|
|
+ :class="{
|
|
|
+ 'status-item-current':
|
|
|
+ status.value == -1
|
|
|
+ ? status.value == params[status.key] && params.apply_refund != 1
|
|
|
+ : status.value == params[status.key],
|
|
|
+ }"
|
|
|
+ size="small"
|
|
|
+ >{{ status.label }}</el-button
|
|
|
+ >
|
|
|
+ </el-badge>
|
|
|
</div>
|
|
|
<div class="wrap-content">
|
|
|
<div class="list">
|
|
@@ -36,6 +55,7 @@
|
|
|
@handleInvoiceDetail="handleInvoiceDetail"
|
|
|
@handleViewLogistics="handleViewLogistics"
|
|
|
@handleToRefundDetail="handleToRefundDetail"
|
|
|
+ @checkCommodityDetail="checkCommodityDetail"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -101,7 +121,7 @@ import MyOrderCard from "@/components/card/product/my-order-card.vue";
|
|
|
import TitleControl from "@/components/module/title-control.vue";
|
|
|
import PaymentWindowWX from "@/components/module/payment-window-wx.vue";
|
|
|
import ProductLogisticsInfo from "@/components/product/product-logistics-info.vue";
|
|
|
-import { OrderService } from "@/common/service";
|
|
|
+import { OrderService, MallService } from "@/common/service";
|
|
|
export default {
|
|
|
components: {
|
|
|
MyOrderCard,
|
|
@@ -121,13 +141,13 @@ export default {
|
|
|
},
|
|
|
finished: false, // 没有更多数据
|
|
|
status_list: [
|
|
|
- { value: -1, label: "全部", key: "status" },
|
|
|
- { value: 0, label: "待付款", key: "status" },
|
|
|
- { value: 1, label: "待发货", key: "status" },
|
|
|
- { value: 2, label: "待收货", key: "status" },
|
|
|
- { value: 3, label: "已完成", key: "status" },
|
|
|
- { value: 9, label: "已取消", key: "status" },
|
|
|
- { value: 1, label: "退款/售后", key: "apply_refund" },
|
|
|
+ { value: -1, label: "全部", key: "status", numValue: 0 },
|
|
|
+ { value: 0, label: "待付款", key: "status", numValue: 0 },
|
|
|
+ { value: 1, label: "待发货", key: "status", numValue: 0 },
|
|
|
+ { value: 2, label: "待收货", key: "status", numValue: 0 },
|
|
|
+ { value: 3, label: "已完成", key: "status", numValue: 0 },
|
|
|
+ { value: 9, label: "已取消", key: "status", numValue: 0 },
|
|
|
+ { value: 1, label: "退款/售后", key: "apply_refund", numValue: 0 },
|
|
|
],
|
|
|
price: "", // 微信支付金额
|
|
|
wx_code_url: "", // 微信支付二维码
|
|
@@ -143,7 +163,12 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.getList();
|
|
|
+ if (JSON.parse(sessionStorage.getItem("orderForm"))) {
|
|
|
+ this.params = JSON.parse(sessionStorage.getItem("orderForm"));
|
|
|
+ this.getList();
|
|
|
+ } else {
|
|
|
+ this.getList();
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
// 触底
|
|
@@ -188,6 +213,21 @@ export default {
|
|
|
}
|
|
|
loadingFullscreen ? loadingFullscreen.close() : "";
|
|
|
});
|
|
|
+ MallService.getMarkNum().then((res) => {
|
|
|
+ this.status_list.forEach((item) => {
|
|
|
+ if (item.label == "待付款") {
|
|
|
+ item.numValue = res.data.no_pay_num;
|
|
|
+ } else if (item.label == "待发货") {
|
|
|
+ item.numValue = res.data.no_express_num;
|
|
|
+ } else if (item.label == "待收货") {
|
|
|
+ item.numValue = res.data.express_num;
|
|
|
+ } else if (item.label == "已完成") {
|
|
|
+ item.numValue = res.data.finish_num;
|
|
|
+ } else if (item.label == "退款/售后") {
|
|
|
+ item.numValue = res.data.refund_num;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
// 监听订单状态
|
|
|
watchOrderState(order_id) {
|
|
@@ -205,6 +245,17 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
+ //查看商品详情
|
|
|
+ checkCommodityDetail(data) {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/product-details",
|
|
|
+ query: {
|
|
|
+ //goods_id 没有存放在最外层,存放在了数组里面,所以要用到[0]
|
|
|
+ id: data.order_item[0].goods_id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
// 关闭微信弹窗
|
|
|
wxClose() {
|
|
|
clearTimeout(this.orderWatch);
|
|
@@ -323,6 +374,7 @@ export default {
|
|
|
},
|
|
|
// 查看详情
|
|
|
handleToDetail(item) {
|
|
|
+ sessionStorage.setItem("orderForm", JSON.stringify(this.params));
|
|
|
this.$router.push({
|
|
|
path: "/product-order-detail",
|
|
|
query: {
|
|
@@ -371,18 +423,18 @@ export default {
|
|
|
align-items: center;
|
|
|
.status-item {
|
|
|
height: 30px;
|
|
|
- padding: 0 15px;
|
|
|
+ // padding: 0 15px;
|
|
|
background: #ffffff;
|
|
|
font-size: 14px;
|
|
|
font-weight: 400;
|
|
|
color: #555555;
|
|
|
line-height: 30px;
|
|
|
- margin-right: 10px;
|
|
|
+ margin-right: 20px;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
.status-item-current {
|
|
|
- color: #2a63f3;
|
|
|
- background: rgba(0, 84, 247, 0.1);
|
|
|
+ color: #2a63f3 !important;
|
|
|
+ background: rgba(0, 84, 247, 0.1) !important;
|
|
|
}
|
|
|
}
|
|
|
.wrap-content {
|