修改请求文件位置、干扰源接入屏蔽终端入网检测tab

This commit is contained in:
zhujiyan
2024-05-16 14:59:20 +08:00
parent 5b9d4aac0f
commit fcb4318465
6 changed files with 297 additions and 255 deletions

View File

@@ -0,0 +1,16 @@
import createAxios from '@/utils/request'
import { SUPERVISION_BOOT } from '@/utils/constantRequest'
const MAPPING_PATH = SUPERVISION_BOOT + '/workflow/wfForm'
/**
* 提交表单数据
*/
export const submitFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/userReport/add',
method: 'POST',
data: data
})
}

View File

@@ -0,0 +1,16 @@
import createAxios from '@/utils/request'
import { SUPERVISION_BOOT } from '@/utils/constantRequest'
const MAPPING_PATH = SUPERVISION_BOOT + '/workflow/wfForm'
/**
* 提交终端信息表单数据
*/
export const addTerminalFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/deVReport/add',
method: 'POST',
data: data
})
}