first commit

This commit is contained in:
ye1023
2026-04-09 15:09:34 +08:00
commit d8e3a63df1
2246 changed files with 352109 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defHttp } from '/@/utils/http/axios';
enum Api {
list = '/sys/log/list',
}
/**
* 查询日志列表
* @param params
*/
export const getLogList = (params) => {
return defHttp.get({ url: Api.list, params });
};