修改技术监督删除功能

This commit is contained in:
GGJ
2024-09-13 11:11:21 +08:00
parent fe6bae1bdc
commit 8c8eaa11be
11 changed files with 312 additions and 42 deletions

View File

@@ -3,8 +3,16 @@ import request from '@/utils/request'
// 获取区域中断终端
export function getAreaOffDev(data) {
return request({
url: "/device-boot/device/getAreaOffDev",
method: "post",
url: '/device-boot/device/getAreaOffDev',
method: 'post',
data
});
}
})
}
// 获取区域中断终端
export function getYwZtSubstation(data) {
return request({
url: '/device-boot/ywZt/getYwZtSubstation',
method: 'GET',
params: data
})
}

View File

@@ -49,7 +49,7 @@ export const libcaseAdd = (data: any) => {
})
}
/**
* 算法库删除
* 案例库删除
*/
export const libcaseBeleteyById = (data: any) => {
return createAxios({
@@ -58,3 +58,13 @@ export const libcaseBeleteyById = (data: any) => {
params:data
})
}
/**
* 案例库修改
*/
export const updateCaseLibrary = (data: any) => {
return createAxios({
url: '/supervision-boot/libcase/updateCaseLibrary',
method: 'POST',
data
})
}

View File

@@ -79,3 +79,13 @@ export const deleteSurveyPlanTest = (data: any) => {
data
})
}
/**
* 监测点联调列表删除流程
*/
export const deleteTempLineDebugReport = (data: any) => {
return createAxios({
url: '/supervision-boot/tempLinedebug/deleteTempLineDebugReport',
method: 'POST',
data
})
}