修复订单列表部分退单文字回显问题

This commit is contained in:
2026-01-05 13:53:05 +08:00
parent 18d3d2a428
commit 98c7908417
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@ export type statusType =
| "done"
| "refunding"
| "refund"
| "part-refund"
| "part_refund"
| "cancelled"
| "";

View File

@@ -7,7 +7,7 @@ export const statusOptions: statusOptions[] = [
{ label: "订单完成", value: "done" },
{ label: "申请退单", value: "refunding" },
{ label: "退单", value: "refund" },
{ label: "部分退单", value: "part-refund" },
{ label: "部分退单", value: "part_refund" },
{ label: "取消订单", value: "cancelled" },
];