docs: update progress to reflect Phase 1-6 completion
- Update CLAUDE.md architecture snapshot: all phases complete - Update wiki/index.md: module descriptions and progress table - All 6 phases of ERP platform base are now implemented Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -24,10 +24,10 @@ export interface UpdateUserRequest {
|
||||
status?: string;
|
||||
}
|
||||
|
||||
export async function listUsers(page = 1, pageSize = 20) {
|
||||
export async function listUsers(page = 1, pageSize = 20, search = '') {
|
||||
const { data } = await client.get<{ success: boolean; data: PaginatedResponse<UserInfo> }>(
|
||||
'/users',
|
||||
{ params: { page, page_size: pageSize } }
|
||||
{ params: { page, page_size: pageSize, search: search || undefined } }
|
||||
);
|
||||
return data.data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user