修改台账树
This commit is contained in:
@@ -26,3 +26,30 @@ export function deleteUser(data: any) {
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 新增治理方案绑定
|
||||
export function saveGovernPlan(data: any) {
|
||||
return request({
|
||||
url: '/cs-harmonic-boot/pqGovernPlan/save',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改治理方案绑定
|
||||
export function updateGovernPlan(data: any) {
|
||||
return request({
|
||||
url: '/cs-harmonic-boot/pqGovernPlan/update',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除治理方案绑定
|
||||
export function deleteGovernPlan(data: any) {
|
||||
return request({
|
||||
url: '/cs-harmonic-boot/pqGovernPlan/delete',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user