mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
8 lines
255 B
TypeScript
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 });
|
|||
|
|
};
|