You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
365 B
JavaScript

3 months ago
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,
};