终端监测页面调试

This commit is contained in:
zhujiyan
2024-05-16 18:08:48 +08:00
parent eb3713f8cf
commit cf621bafdf
4 changed files with 289 additions and 2206 deletions

View File

@@ -0,0 +1,28 @@
import createAxios from '@/utils/request'
import { SUPERVISION_BOOT } from '@/utils/constantRequest'
const MAPPING_PATH = SUPERVISION_BOOT + '/workflow/wfForm'
/**
* 提交监测点信息表单数据
*/
export const addMointorPointFormData = (data: any) => {
return createAxios({
url: '/supervision-boot/tempLine/add',
method: 'POST',
data: data
})
}
/**
* 查询干扰源列表数据
*/
export const getList = (data: any) => {
return createAxios({
url: '/supervision-boot/userReport/getUserReportList',
method: 'POST',
data: data
})
}