29 lines
609 B
TypeScript
29 lines
609 B
TypeScript
|
|
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
|
||
|
|
})
|
||
|
|
}
|