You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
386 B
TypeScript

import { useAxios } from '@/hooks/web/useAxios'
const request = useAxios()
// 查询操作日志列表
export const getOperateLogPageApi = (params) => {
return request.get({ url: '/system/operate-log/page', params })
}
// 导出操作日志
export const exportOperateLogApi = (params) => {
return request.get({ url: '/system/operate-log/export', params, responseType: 'blob' })
}