客户查询添加操作功能

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,21 @@ export async function getPageChannel(params: {
}) {
return callByUser<PageRecord<Channel>>("/api/admin/channel/page", params)
}
export async function getChannel(params: {
page: number
size: number
user_id: number
batch_no?: string
user_phone?: string
resource_no?: string
proxy_port?: number
proxy_host?: string
node_ip?: string
expired_at_start?: Date
expired_at_end?: Date
}) {
return callByUser<PageRecord<Channel>>(
"/api/admin/channel/page/of-user",
params,
)
}