新增供应商账号管理功能,包括供应商用户列表、用户信息更新和密码重置功能。

This commit is contained in:
刘倡
2025-07-26 11:29:50 +08:00
parent 0733b0cfaa
commit 0699196eb8
7 changed files with 480 additions and 52 deletions

30
src/pages/System/SupplierUser/data.d.ts vendored Normal file
View File

@ -0,0 +1,30 @@
export interface SupplierUserListItem {
userId: string;
username: string;
name: string;
mobile: string;
supplierName: string;
creditCode: string;
status: number;
email?: string;
remark?: string;
}
export interface TableListPagination {
total: number;
pageSize: number;
current: number;
}
export interface TableListData {
list: SupplierUserListItem[];
pagination: Partial<TableListPagination>;
}
export interface TableListParams {
pageSize?: number;
current?: number;
keyword?: string;
status?: number;
sorter?: string;
}