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.
40 lines
574 B
40 lines
574 B
import request from "@/utils/request";
|
|
|
|
// 线表计划维护
|
|
|
|
// 获取列表
|
|
export function getList(data) {
|
|
return request({
|
|
url: "/dmXbjh/getList",
|
|
method: "post",
|
|
data,
|
|
});
|
|
}
|
|
|
|
// 批量保存
|
|
export function save(data) {
|
|
return request({
|
|
url: "/dmXbjh/save",
|
|
method: "post",
|
|
data,
|
|
});
|
|
}
|
|
|
|
// 批量提交
|
|
export function tj(data) {
|
|
return request({
|
|
url: "/dmXbjh/tj",
|
|
method: "post",
|
|
data,
|
|
});
|
|
}
|
|
|
|
// 导入
|
|
export function upload(data) {
|
|
return request({
|
|
url: "/dmXbjh/upload",
|
|
method: "post",
|
|
data,
|
|
});
|
|
}
|