联调 普测

This commit is contained in:
GGJ
2024-05-14 18:17:53 +08:00
parent 91e553ead3
commit 25f5272967
8 changed files with 189 additions and 178 deletions

View File

@@ -18,9 +18,9 @@ export function exportSurveyPlan(data: any) {
})
}
//删除普测计划
export function deletePlan(data: any) {
export function removeSurvey(data: any) {
return createAxios({
url: '/process-boot/rGeneralSurveyPlan/deletePlan',
url: '/supervision-boot/generalSurvey/removeSurvey',
method: 'post',
data,
@@ -92,7 +92,7 @@ export function MultipartFile(data: any) {
}
export function initDetpStataionTree(data: any) {
return createAxios({
url: '/process-boot/rGeneralSurveyPlan/initDetpStataionTree',
url: '/supervision-boot/generalSurvey/initDetpStataionTree',
method: 'post',
params: data
})
@@ -144,3 +144,11 @@ export function submitAuditUser(data: any) {
data
})
}
// 新增普测计划
export function addSurvey(data: any) {
return createAxios({
url: '/supervision-boot/generalSurvey/addSurvey',
method: 'post',
data
})
}