mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-07 15:45:08 +08:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
import request from '@/config/axios'
|
|
|
|
// 查询列表API 访问日志
|
|
export const getApiAccessLogPageApi = (params) => {
|
|
return request.get({ url: '/infra/api-access-log/page', params })
|
|
}
|
|
|
|
// 导出API 访问日志
|
|
export const exportApiAccessLogApi = (params) => {
|
|
return request.download({ url: '/infra/api-access-log/export-excel', params })
|
|
}
|