修复:订单状态的筛选

This commit is contained in:
2025-08-11 00:39:33 +08:00
parent afe54770a8
commit a2d763dd42
4 changed files with 71 additions and 105 deletions

View File

@@ -30,9 +30,9 @@ export interface ShopMerchant {
merchantCategoryTitle?: string;
// 经纬度
lngAndLat?: string;
//
//
lng?: string;
//
//
lat?: string;
// 所在省份
province?: string;
@@ -56,8 +56,16 @@ export interface ShopMerchant {
price?: string;
// 是否自营
ownStore?: number;
// 是否可以快递
canExpress?: string;
// 是否推荐
recommend?: number;
// 是否营业
isOn?: number;
//
startTime?: string;
//
endTime?: string;
// 是否需要审核
goodsReview?: number;
// 管理入口
@@ -83,8 +91,5 @@ export interface ShopMerchant {
*/
export interface ShopMerchantParam extends PageParam {
merchantId?: number;
phone?: string;
userId?: number;
shopType?: string;
keywords?: string;
}

View File

@@ -222,4 +222,5 @@ export interface ShopOrderParam extends PageParam {
userId?: number;
keywords?: string;
deliveryStatus?: number;
statusFilter?: number;
}