From c0e5d75cc69d89c1fcd23416ed37bf5fe58edb85 Mon Sep 17 00:00:00 2001 From: chc <1501738723@qq.com> Date: Wed, 18 Sep 2024 15:25:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=A2=9E=E5=8A=A0=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=8F=91=E8=B4=A7=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/order/complain/complain.vue | 1 + pages/order/orderDetail.vue | 4 ++++ utils/filters.js | 1 + 3 files changed, 6 insertions(+) diff --git a/pages/order/complain/complain.vue b/pages/order/complain/complain.vue index 4f6c48b..72d39a4 100644 --- a/pages/order/complain/complain.vue +++ b/pages/order/complain/complain.vue @@ -68,6 +68,7 @@ export default { orderStatusList: { //订单状态列表 UNDELIVERED: "待发货", + PARTS_DELIVERED: "部分发货", UNPAID: "未付款", PAID: "已付款", DELIVERED: "已发货", diff --git a/pages/order/orderDetail.vue b/pages/order/orderDetail.vue index 52fa278..6be9698 100644 --- a/pages/order/orderDetail.vue +++ b/pages/order/orderDetail.vue @@ -289,6 +289,10 @@ export default { title: "待发货", value: "商品等待发货中", }, + PARTS_DELIVERED: { + title: "部分发货", + value: "商品已部分发货。", + }, DELIVERED: { title: "已发货", value: "商品已发货,请您耐心等待", diff --git a/utils/filters.js b/utils/filters.js index e24696a..70c0b00 100644 --- a/utils/filters.js +++ b/utils/filters.js @@ -522,6 +522,7 @@ export function orderStatusList (val) { UNDELIVERED: "待发货", UNPAID: "未付款", PAID: "已付款", + PARTS_DELIVERED: "部分发货", DELIVERED: "已发货", CANCELLED: "已取消", COMPLETED: "已完成",