fix: 接口变更/请求方法为大写

This commit is contained in:
TsMask
2025-02-20 10:42:34 +08:00
parent 8bfa73a67a
commit 7322759545
83 changed files with 568 additions and 1388 deletions

View File

@@ -10,8 +10,8 @@ export function exportSysLogOperate(
) {
return request({
url: '/system/log/operate/export',
method: 'post',
data: query,
method: 'GET',
params: query,
responseType: 'blob',
});
}
@@ -26,7 +26,7 @@ export function listSysLogOperate(
) {
return request({
url: '/system/log/operate/list',
method: 'get',
method: 'GET',
params: query,
});
}
@@ -39,7 +39,7 @@ export function listSysLogOperate(
export function delSysLogOperate(operId: string) {
return request({
url: `/system/log/operate/${operId}`,
method: 'delete',
method: 'DELETE',
});
}
@@ -50,6 +50,6 @@ export function delSysLogOperate(operId: string) {
export function cleanSysLogOperate() {
return request({
url: '/system/log/operate/clean',
method: 'delete',
method: 'DELETE',
});
}