12 lines
179 B
JavaScript
Raw Normal View History

2022-08-12 18:26:27 +08:00
import http from "@/util/http.js";
// 单品日志记录请求
export function recordList(params) {
return http({
url: "/api/logs",
method: "get",
params,
});
}