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.

30 lines
469 B

import request from "@/utils/request";
//工厂日历
// 获取列表
export function getList(data) {
return request({
url: "/emGcrl/getList",
method: "post",
data,
});
}
// 点击新增 生成日历
export function generate(data) {
return request({
url: "/emGcrl/generate",
method: "post",
data,
});
}
// 批量修改
export function update(data) {
return request({
url: "/emGcrl/update",
method: "post",
data,
});
}