zhongrj
2024-05-17 7237b76c8fe87df70ae2e3b4a03cf675140960fc
src/api/logs.js
@@ -1,32 +1,35 @@
import request from '@/router/axios';
export const getUsualList = (current, size) => {
export const getUsualList = (current, size,params) => {
  return request({
    url: '/api/blade-log/usual/list',
    method: 'get',
    params: {
      ...params,
      current,
      size
    }
  })
}
export const getApiList = (current, size) => {
export const getApiList = (current, size,params) => {
  return request({
    url: '/api/blade-log/api/list',
    url: '/api/blade-log/api/page',
    method: 'get',
    params: {
      ...params,
      current,
      size
    }
  })
}
export const getErrorList = (current, size) => {
export const getErrorList = (current, size,params) => {
  return request({
    url: '/api/blade-log/error/list',
    method: 'get',
    params: {
      ...params,
      current,
      size
    }