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

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

@@ -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获取预告警单的详细数据
*/