修改台账树

This commit is contained in:
guanj
2026-06-17 09:23:35 +08:00
parent d9dfd804c5
commit 2330b50147
25 changed files with 853 additions and 476 deletions

View File

@@ -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
})
}