logSearch-api.js 285 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 import request from "@/utils/request"; // POST // /operationLog/getOperationLogList // 查询操作日志列表 export function getOperationLogList(data) { return request({ url: "/bus-customer/operationLog/getOperationLogList", method: "post", data: data, }); }