联调 技术监督 草稿功能

This commit is contained in:
GGJ
2024-06-20 16:54:19 +08:00
parent ac1335985f
commit 3a49fbf6a8
15 changed files with 256 additions and 98 deletions

View File

@@ -40,10 +40,11 @@ export const updateSurveyTest = (data: any) => {
/**
* 针对有问题的现场测试发起告警单
*/
export const initiateWarningLeaflet = (id: string) => {
export const initiateWarningLeaflet = (data:any) => {
return createAxios({
url: MAPPING_PATH + '/initiateWarningLeaflet?id=' + id,
method: 'GET'
url: MAPPING_PATH + '/initiateWarningLeaflet',
method: 'POST',
data
})
}