diff --git a/src/views/system/goodsOrder/index.vue b/src/views/system/goodsOrder/index.vue index 496b751..a991696 100644 --- a/src/views/system/goodsOrder/index.vue +++ b/src/views/system/goodsOrder/index.vue @@ -31,7 +31,7 @@ @keyup.enter.native="handleQuery" /> - + - + @@ -546,27 +543,20 @@ export default { value: "WAIT_DISPATCH", label: "待派单", }, + { + value: "REFUNDED", + label: "已退款", + }, { value: "WAIT_REFUND", label: "退款中", }, - { - value: "REFUNDED", - label: "退款成功", - }, { value: "COMPLETE", label: "服务完成", }, - { - value: "WAIT_RETURNED_GOODS", - label: "待退货", - }, - { - value: "RETURNED_GOODS", - label: "已退货", - }, + { value: "NOT_FINISH", label: "未完成", @@ -675,12 +665,8 @@ export default { return "退款中"; case "CANCEL": return "已取消"; - case "REFUNDED": - return "退款成功"; - case "WAIT_RETURNED_GOODS": - return "待退货"; - case "RETURNED_GOODS": - return "已退货"; + case "REFUNDED": + return "已退款"; default: break; }