优化:提升性能

This commit is contained in:
2025-08-04 07:17:31 +08:00
parent a4cc1cfe2d
commit e5e496a216
9 changed files with 618 additions and 50 deletions

View File

@@ -1,4 +1,5 @@
import type { PageParam } from '@/api';
import {OrderGoods} from "@/api/system/orderGoods/model";
/**
* 订单
@@ -140,6 +141,8 @@ export interface ShopOrder {
selfTakeCode?: string;
// 是否已收到赠品
hasTakeGift?: string;
// 订单商品
orderGoods?: OrderGoods[];
}
/**
@@ -148,10 +151,12 @@ export interface ShopOrder {
export interface ShopOrderParam extends PageParam {
orderId?: number;
orderNo?: string;
type?: number;
phone?: string;
payStatus?: number;
orderStatus?: number;
payType?: number;
isInvoice?: boolean;
statusFilter?: number;
keywords?: string;
}