fix : 简化模板

This commit is contained in:
2024-08-29 17:15:09 +08:00
parent 8cea0a24b8
commit 242f52cf5a
219 changed files with 38 additions and 32145 deletions

View File

@@ -1,24 +0,0 @@
import request from "@/utils/request.js";
//查询操作日志
export const getOperateLog = (params) => {
return request({
url: "/log/log/list",
method: "get",
params
});
};
//查询操作日志详情
export const getOperateLogDetail = (operId) => {
return request({
url: `/log/log/${operId}`,
method: "get"
});
};
//删除操作日志
export const deleteOperateLog = (operIds) => {
return request({
url: `/log/log/${operIds}`,
method: "delete"
});
};