业务流程添加重新发起&取消
This commit is contained in:
@@ -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获取预告警单的详细数据
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user