fix: MML日志列表显示

This commit is contained in:
TsMask
2025-08-05 17:28:03 +08:00
parent 7901b34c04
commit 67dc3a0389
3 changed files with 19 additions and 80 deletions

View File

@@ -14,3 +14,12 @@ export function updateNeConfigReload(neType: string, neId: string) {
timeout: 180_000,
});
}
// MMML日志列表
export function mmlLogList(query: Record<string, any>) {
return request({
url: '/tool/mml/log/list',
method: 'GET',
params: query,
});
}