修改
This commit is contained in:
@@ -246,3 +246,80 @@ export function getSingleMaterialCostAnalysis(data) {
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function getCalendar(data) {
|
||||
return request({
|
||||
url: "lb/index-target-month/getCalendar",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
export function getLevelStruc(data) {
|
||||
return request({
|
||||
url: "/lb/index-target-month/getLevelStruc",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function getTargetMonthPage(data) {
|
||||
return request({
|
||||
url: "/lb/index-target-month/list",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function updateTargetMonthData(data) {
|
||||
return request({
|
||||
url: "/lb/index-target-month/update",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function getTargetYearPage(data) {
|
||||
return request({
|
||||
url: "/lb/index-target-year/list",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function updateTargetYearData(data) {
|
||||
return request({
|
||||
url: "/lb/index-target-year/update",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function getRealMonthPage(data) {
|
||||
return request({
|
||||
url: "/lb/index-real-month/list",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
|
||||
export function getRealMonthCalendar(data) {
|
||||
return request({
|
||||
url: "/lb/index-real-month/getCalendar",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
export function updateRealMonthData(data) {
|
||||
return request({
|
||||
url: "/lb/index-real-month/update",
|
||||
method: "post",
|
||||
data: data,
|
||||
});
|
||||
}
|
||||
export function getDictListData(query) {
|
||||
return request({
|
||||
url: "/system/dict-data/page",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user