This commit is contained in:
2025-11-07 01:23:45 +08:00
parent a897cdcae9
commit a284047b48
6 changed files with 904 additions and 11 deletions

View File

@@ -158,3 +158,21 @@ export function getDocSheetList(fileId) {
})
}
// 查询操作日志列表
export function getOperationLogs(params) {
return request({
url: '/jarvis/tendoc/operationLogs',
method: 'get',
params
})
}
// 查询最近的操作日志
export function getRecentLogs(params) {
return request({
url: '/jarvis/tendoc/recentLogs',
method: 'get',
params
})
}