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 getLoginLogList = (params) => {
return request({
url: "/log/login-info/list",
method: "get",
params
});
};
//查询登录日志详情
export const getLoginLogDetail = (infoId) => {
return request({
url: `/log/login-info/${infoId}`,
method: "get"
});
};
//删除登录日志
export const deleteLoginLog = (infoIds) => {
return request({
url: `/log/login-info/${infoIds}`,
method: "delete"
});
};