logSearch-api.js 285 Bytes
import request from "@/utils/request";

// POST
// ​/operationLog​/getOperationLogList
// 查询操作日志列表
export function getOperationLogList(data) {
  return request({
    url: "/bus-customer/operationLog/getOperationLogList",
    method: "post",
    data: data,
  });
}