import axios from "@/assets/js/axios"; /** * 事件类型-查询 */ export const getTypes = () => { return axios({ method: "GET", url: "operationLog/getTypes", }); }; /** * 事件类型-查询 */ export const getLogList = (data) => { return axios({ method: "POST", url: "operationLog/getPage", data }); };