mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 22:50:44 +00:00
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
|
|
import http from "@/util/http.js";
|
||
|
|
|
||
|
|
// 单品日志记录请求
|
||
|
|
|
||
|
|
export function recordList(params) {
|
||
|
|
return http({
|
||
|
|
url: "/api/logs",
|
||
|
|
method: "get",
|
||
|
|
params,
|
||
|
|
});
|
||
|
|
}
|