修改客户管理认领和管理员字段展示逻辑

This commit is contained in:
Eamon
2026-01-09 18:36:08 +08:00
parent c85293fd1d
commit 887ff2f07c
5 changed files with 31 additions and 12 deletions

View File

@@ -1,6 +1,7 @@
export type User = {
id: number
admin_id: number
admin_id?: number
admin?: Admin
phone: string
has_password: boolean
username: string
@@ -20,3 +21,7 @@ export type User = {
created_at: Date
updated_at: Date
}
export type Admin = {
name: string
}