暂降治理评估

This commit is contained in:
2024-03-28 13:25:41 +08:00
parent 45ba496361
commit 965b18b540
44 changed files with 2748 additions and 1108 deletions

View File

@@ -0,0 +1,16 @@
import createAxios from '@/utils/request'
const ADVANCE_BOOT = '/advance-boot'
/**
* 评估各方案
*/
export const calc = (data:any) => {
return createAxios({
url: ADVANCE_BOOT + '/sagGovernScheme/calc',
method: 'POST',
data
})
}