业务流程添加重新发起&取消

This commit is contained in:
zhujiyan
2024-06-04 16:54:33 +08:00
parent ed9bce09b3
commit a0c64a4232
19 changed files with 532 additions and 226 deletions

View File

@@ -27,6 +27,16 @@ export const updateFormData = (data: any) => {
}
//取消干扰源审批
export const cancelFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/userReport/cancel',
method: 'POST',
data
})
}
export const submitGoNet = (data: any) => {
return createAxios({
url: '/supervision-boot/userReportNormal/addUserReportNormal',

View File

@@ -16,6 +16,28 @@ export const addFeedback = (data: any) => {
})
}
/**
* 针对有问题的现场测试重新发起告警单
*/
export const updateFeedback = (data: any) => {
return createAxios({
url: MAPPING_PATH + '/update',
method: 'POST',
data: data
})
}
/**
* 针对有问题的现场测试取消发起告警单
*/
export const cancelFeedback = (data: any) => {
return createAxios({
url: MAPPING_PATH + '/cancel',
method: 'POST',
data: data
})
}
/**
* 根据id获取预告警单的详细数据
*/

View File

@@ -24,6 +24,15 @@ export const updateMointorPointFormData = (data: any) => {
})
}
//取消发起监测点信息
export const cancelMointorPointFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/tempLine/cancel',
method: 'POST',
data: data
})
}
/**
* 查询干扰源列表数据

View File

@@ -18,12 +18,22 @@ export const addPlanFormData = (data: any) => {
//重新发起技术监督计划表单数据
export const updatePlanFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/superPlan/updatePlan',
url: '/supervision-boot/superPlan/update',
method: 'POST',
data: data
})
}
//取消发起技术监督计划表单数据
export const cancelPlanFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/superPlan/cancel',
method: 'POST',
data: data
})
}
/**
* 根据当前登陆用户的部门id查询人员
*/

View File

@@ -26,6 +26,17 @@ export const updateTerminalFormData = (data: any) => {
})
}
/**
* 编辑终端信息表单数据(重新发起)
*/
export const cancelTerminalFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/deVReport/cancel',
method: 'POST',
data: data
})
}
/**
* 获取关联设备列表
*/