Files
Yi.Admin/Yi.Pure.Vue3/src/api/log/operLog.ts

8 lines
255 B
TypeScript
Raw Normal View History

2024-09-18 21:38:22 +08:00
import { http } from "@/utils/http";
import type { ResultPage } from "@/api/result";
/** 查询操作日志列表 */
export const getOperLoglist = (query?: object) => {
return http.request<ResultPage>("get", "/operation-log", { params: query });
};