ShiShiYiBan/yudao-ui-admin-vue3/src/api/infra/apiErrorLog/index.ts

21 lines
650 B
TypeScript

import { useAxios } from '@/hooks/web/useAxios'
const request = useAxios()
// 查询列表API 访问日志
export const getApiErrorLogPageApi = (params) => {
return request.get({ url: '/infra/api-error-log/page', params })
}
// 更新 API 错误日志的处理状态
export const updateApiErrorLogPageApi = (id: number, processStatus: number) => {
return request.put({
url: '/infra/api-error-log/update-status?id=' + id + '&processStatus=' + processStatus
})
}
// 导出API 访问日志
export const exportApiErrorLogApi = (params) => {
return request.get({ url: '/infra/api-error-log/export-excel', params, responseType: 'blob' })
}