artwork-repair-h5/http/management.js

25 lines
365 B
JavaScript
Raw Normal View History

2024-07-08 06:25:32 +00:00
import http from "./interface";
// 库存列表
export const detail = (data) => {
return http.request({
url: "/artwork/repair-detail",
method: "POST",
data,
});
};
// 修改
export const update = (data) => {
return http.request({
url: "/artwork/repair-update",
method: "POST",
data,
});
};
export default {
detail,
update,
};