You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
592 B
39 lines
592 B
2 years ago
|
import request from "@/utils/request";
|
||
|
|
||
|
// 设备产能维护
|
||
|
|
||
|
// 获取列表
|
||
|
export function getList(data) {
|
||
|
return request({
|
||
|
url: "/emSbcnp/getList",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 批量新增
|
||
|
export function save(data) {
|
||
|
return request({
|
||
|
url: "/emSbcnp/save",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
// 批量修改
|
||
|
export function update(data) {
|
||
|
return request({
|
||
|
url: "/emSbcnp/update",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 批量删除
|
||
|
export function delete1(data) {
|
||
|
return request({
|
||
|
url: "/emSbcnp/delete",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|