客户查询添加操作功能

This commit is contained in:
Eamon
2026-04-09 17:08:59 +08:00
parent cc7e26561d
commit 790180a847
24 changed files with 2261 additions and 108 deletions

View File

@@ -16,3 +16,19 @@ export async function getPageBatch(params: {
}) {
return callByUser<PageRecord<Batch>>("/api/admin/batch/page", params)
}
export async function getBatch(params: {
page: number
size: number
user_id: number
user_phone?: string
resource_no?: string
batch_no?: string
prov?: string
city?: string
isp?: string
created_at_start?: Date
created_at_end?: Date
}) {
return callByUser<PageRecord<Batch>>("/api/admin/batch/page/of-user", params)
}