linwe
2024-08-09 5e2aafeede13d337380f736567caf74f49713be7
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
    }