diff --git a/src/api/shop/order.ts b/src/api/shop/order.ts
index f45ae3b..888dfd6 100644
--- a/src/api/shop/order.ts
+++ b/src/api/shop/order.ts
@@ -105,6 +105,12 @@ export interface OrderDTO {
* 多个商品封面图用逗号分隔
*/
coverImgs?: string;
+ /**
+ * 退还状态
+ * @remarks
+ * 0-未退还 | 1-已退还
+ */
+ returnStatus?: number;
}
export const getOrderListApi = (params?: OrderQuery) => {
diff --git a/src/views/shop/order/index.vue b/src/views/shop/order/index.vue
index 3d31ccb..2ce2b68 100644
--- a/src/views/shop/order/index.vue
+++ b/src/views/shop/order/index.vue
@@ -232,6 +232,13 @@ getList();
+
+
+
+ {{ { 0: '未退还', 1: '已退还' }[row.returnStatus] }}
+
+
+
{{ { wechat: '微信支付', balance: '借呗支付' }[row.paymentMethod] || row.paymentMethod }}