This commit is contained in:
kk
2026-07-08 18:00:33 +08:00
commit e66b4a3680
312 changed files with 54718 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
import request from '@/axios';
export const getUsualList = (current, size) => {
return request({
url: '/blade-log/usual/list',
method: 'get',
params: {
current,
size,
},
});
};
export const getApiList = (current, size) => {
return request({
url: '/blade-log/api/list',
method: 'get',
params: {
current,
size,
},
});
};
export const getErrorList = (current, size) => {
return request({
url: '/blade-log/error/list',
method: 'get',
params: {
current,
size,
},
});
};
export const getUsualLogs = id => {
return request({
url: '/blade-log/usual/detail',
method: 'get',
params: {
id,
},
});
};
export const getApiLogs = id => {
return request({
url: '/blade-log/api/detail',
method: 'get',
params: {
id,
},
});
};
export const getErrorLogs = id => {
return request({
url: '/blade-log/error/detail',
method: 'get',
params: {
id,
},
});
};