11 lines
178 B
JavaScript
Vendored
11 lines
178 B
JavaScript
Vendored
import http from "@/util/http.js";
|
|
|
|
// 单品日志记录请求
|
|
export function recordList(params) {
|
|
return http({
|
|
url: "/api/logs",
|
|
method: "get",
|
|
params,
|
|
});
|
|
}
|