增加流水通知审计分页

This commit is contained in:
yml
2026-05-24 17:51:00 +08:00
parent 03e5d211dc
commit cb636e4e89
21 changed files with 295 additions and 120 deletions
+7
View File
@@ -84,6 +84,13 @@ interface ApiResponse<T> {
data: T
}
export interface PaginatedResult<T> {
items: T[]
total: number
page: number
page_size: number
}
export async function createOrder(listingId: number) {
const { data } = await apiClient.post<ApiResponse<Order>>('/orders', {
listing_id: listingId,