更新:我的订单增加状态筛选;

This commit is contained in:
2025-11-20 13:11:39 +08:00
parent 2731bfba38
commit b15acbb984
2 changed files with 36 additions and 3 deletions

View File

@@ -39,11 +39,11 @@ export async function getVipInfo() {
* @param current 当前页码
* @param limit 每页数量
*/
export async function getOrderList(current: number, limit: number) {
export async function getOrderList(current: number, limit: number, orderStatus: string) {
const res = await mainClient.request<IApiResponse<{ orders: IPageData<IOrder> }>>({
url: 'bookAbroad/home/getAbroadOrderList',
method: 'POST',
data: { current, limit }
data: { current, limit, orderStatus }
})
return res
}