artwork-repair-h5/http/management.js
2024-07-08 14:25:32 +08:00

25 lines
365 B
JavaScript

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,
};