You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1017 B
64 lines
1017 B
import request from '@/router/axios'; |
|
|
|
export const getUsualList = (current, size) => { |
|
return request({ |
|
url: '/api/daf-log/usual/list', |
|
method: 'get', |
|
params: { |
|
current, |
|
size |
|
} |
|
}) |
|
} |
|
|
|
export const getApiList = (current, size) => { |
|
return request({ |
|
url: '/api/daf-log/api/list', |
|
method: 'get', |
|
params: { |
|
current, |
|
size |
|
} |
|
}) |
|
} |
|
|
|
export const getErrorList = (current, size) => { |
|
return request({ |
|
url: '/api/daf-log/error/list', |
|
method: 'get', |
|
params: { |
|
current, |
|
size |
|
} |
|
}) |
|
} |
|
|
|
|
|
export const getUsualLogs = (id) => { |
|
return request({ |
|
url: '/api/daf-log/usual/detail', |
|
method: 'get', |
|
params: { |
|
id, |
|
} |
|
}) |
|
} |
|
export const getApiLogs = (id) => { |
|
return request({ |
|
url: '/api/daf-log/api/detail', |
|
method: 'get', |
|
params: { |
|
id, |
|
} |
|
}) |
|
} |
|
export const getErrorLogs = (id) => { |
|
return request({ |
|
url: '/api/daf-log/error/detail', |
|
method: 'get', |
|
params: { |
|
id, |
|
} |
|
}) |
|
} |
|
|
|
|