新增业务外部接口日志管理

This commit is contained in:
wkc
2026-07-20 15:35:54 +08:00
parent 0a0313af7c
commit 2d9828ea5f
39 changed files with 1603 additions and 497 deletions

View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询业务外部接口日志列表
export function listApiLog(query) {
return request({
url: '/monitor/apilog/list',
method: 'get',
params: query
})
}
// 查询业务外部接口日志详情
export function getApiLog(logId) {
return request({
url: '/monitor/apilog/' + logId,
method: 'get'
})
}