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
602 B
39 lines
602 B
2 years ago
|
import request from "@/utils/request";
|
||
|
|
||
|
// 设备维修计划维护
|
||
|
|
||
|
// 获取列表
|
||
|
export function getList(data) {
|
||
|
return request({
|
||
|
url: "/emSbwxjh/getList",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 批量新增
|
||
|
export function save(data) {
|
||
|
return request({
|
||
|
url: "/emSbwxjh/save",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
// 批量修改
|
||
|
export function update(data) {
|
||
|
return request({
|
||
|
url: "/emSbwxjh/update",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 批量删除
|
||
|
export function delete1(data) {
|
||
|
return request({
|
||
|
url: "/emSbwxjh/delete",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|