diff --git a/src/api/shop/order.ts b/src/api/shop/order.ts
index 8b95aea..f45ae3b 100644
--- a/src/api/shop/order.ts
+++ b/src/api/shop/order.ts
@@ -40,6 +40,12 @@ export interface OrderQuery extends BasePageQuery {
* wechat-微信支付 | balance-借呗支付
*/
paymentMethod?: string;
+ /**
+ * 退款状态
+ * @remarks
+ * 0-未退款 | 1-已退款
+ */
+ returnStatus?: number;
}
export interface OrderDTO {
diff --git a/src/views/shop/approval/index.vue b/src/views/shop/approval/index.vue
index 513f05d..9563ec3 100644
--- a/src/views/shop/approval/index.vue
+++ b/src/views/shop/approval/index.vue
@@ -168,9 +168,6 @@ getList();
搜索
-
- 重置
-
导出Excel
diff --git a/src/views/shop/order/index.vue b/src/views/shop/order/index.vue
index 33798e1..3d31ccb 100644
--- a/src/views/shop/order/index.vue
+++ b/src/views/shop/order/index.vue
@@ -28,6 +28,7 @@ const searchFormParams = ref({
startTime: "",
endTime: "",
payTime: "",
+ returnStatus: null,
});
const pagination = ref({
@@ -166,6 +167,12 @@ getList();
+
+
+
+
+
+
@@ -178,9 +185,6 @@ getList();
搜索
-
- 重置
-
导出Excel