Files
Yi.Framework/Yi.Pure.Vue3/src/api/log/operLog.ts
2024-09-18 21:38:22 +08:00

8 lines
255 B
TypeScript

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 });
};