This commit is contained in:
kron
2025-07-29 11:12:51 +08:00
parent da2de8685d
commit 29886b4fc9
2 changed files with 6 additions and 6 deletions

View File

@@ -346,7 +346,7 @@ export const payOrderAPI = (id) => {
};
export const getOrderListAPI = async (page) => {
const reuslt = await request("GET", `/user/order/list?page${page}`);
const reuslt = await request("GET", `/user/order/list?page=${page}`);
return reuslt.items || [];
};