绘制稳态事件配置页面
This commit is contained in:
@@ -65,3 +65,35 @@ export function savePageIdWithUser(data: any) {
|
||||
params: data
|
||||
})
|
||||
}
|
||||
//新增稳态指标方案
|
||||
export function save(data: any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/csHarmonicPlan/save',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
//修改稳态指标方案
|
||||
export function update(data: any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/csHarmonicPlan/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
//新增稳态指标方案
|
||||
export function deletePlan(data: any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/csHarmonicPlan/delete',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
//根据ID查询稳态指标方案
|
||||
export function getById(data: any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/csHarmonicPlan/getById',
|
||||
method: 'GET',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user