This commit is contained in:
Baobhan Sith
2025-04-24 14:17:20 +08:00
parent 7c46132d30
commit 1ae14ea80c
5 changed files with 104 additions and 28 deletions
+25 -12
View File
@@ -11,28 +11,41 @@ export const useAuditLogStore = defineStore('auditLog', () => {
const currentPage = ref(1);
const logsPerPage = ref(50); // Default page size
// Updated fetchLogs to accept searchTerm and actionType directly
const fetchLogs = async (
page: number = 1,
searchTerm?: string,
actionType?: AuditLogActionType | '' // Allow empty string from select
) => {
// fetchLogs 现在接受一个选项对象作为参数
const fetchLogs = async (options: {
page?: number;
limit?: number; // 新增 limit 参数
searchTerm?: string;
actionType?: AuditLogActionType | '';
sortOrder?: 'asc' | 'desc'; // 新增 sortOrder 参数
} = {}) => {
const {
page = 1,
limit = logsPerPage.value, // 优先使用传入的 limit,否则使用 store 的默认值
searchTerm,
actionType,
sortOrder
} = options;
isLoading.value = true;
error.value = null;
currentPage.value = page;
const offset = (page - 1) * logsPerPage.value;
currentPage.value = page; // 仍然更新当前页码状态
const offset = (page - 1) * limit; // offset 计算基于实际使用的 limit
try {
const params: Record<string, any> = {
limit: logsPerPage.value,
limit: limit, // 使用实际的 limit
offset: offset,
// Add new filter parameters if they have values
// 条件性添加其他参数
...(searchTerm && { search: searchTerm }),
...(actionType && { action_type: actionType }),
...(sortOrder && { sort_order: sortOrder }), // 添加 sort_order 参数
};
// No need to remove undefined keys here as we conditionally add them
const response = await apiClient.get<AuditLogApiResponse>('/audit-logs', { params }); // 使用 apiClient
// 注意:如果 fetchLogs 被用于分页,这里直接赋值 logs.value 可能不是最佳实践
// 但对于仪表盘只获取少量最新日志的场景是可行的。
// 如果需要支持加载更多,需要修改这里的逻辑为追加或替换。
logs.value = response.data.logs;
totalLogs.value = response.data.total;
} catch (err: any) {
@@ -48,7 +61,7 @@ export const useAuditLogStore = defineStore('auditLog', () => {
// Function to change page size and refetch
const setLogsPerPage = (size: number) => {
logsPerPage.value = size;
fetchLogs(1); // Reset to first page when size changes
fetchLogs({ page: 1 }); // 重置到第一页,使用默认 limit
};
return {