- 从 HMS 基座复制 apps/web/ (React + Ant Design + Vite + TypeScript) - 管理端自动代理 API 到 localhost:3000 (vite.config.ts) - 更新 scripts/dev.sh 支持三端启动: backend/admin/app - 登录验证通过, 用户管理/角色权限/审计日志等页面正常 - 添加 .gitignore 排除 node_modules/dist
32 lines
766 B
TypeScript
32 lines
766 B
TypeScript
import client from './client';
|
|
import type { PaginatedResponse } from './types';
|
|
|
|
export interface AuditLogItem {
|
|
id: string;
|
|
tenant_id: string;
|
|
action: string;
|
|
resource_type: string;
|
|
resource_id: string;
|
|
user_id: string;
|
|
old_value?: string;
|
|
new_value?: string;
|
|
ip_address?: string;
|
|
user_agent?: string;
|
|
created_at: string;
|
|
}
|
|
|
|
export interface AuditLogQuery {
|
|
resource_type?: string;
|
|
user_id?: string;
|
|
page?: number;
|
|
page_size?: number;
|
|
}
|
|
|
|
export async function listAuditLogs(query: AuditLogQuery = {}) {
|
|
const { data } = await client.get<{ success: boolean; data: PaginatedResponse<AuditLogItem> }>(
|
|
'/audit-logs',
|
|
{ params: { page: query.page ?? 1, page_size: query.page_size ?? 20, ...query } },
|
|
);
|
|
return data.data;
|
|
}
|