终端监测页面调试
This commit is contained in:
28
src/api/supervision-boot/monitorpoint/index.ts
Normal file
28
src/api/supervision-boot/monitorpoint/index.ts
Normal 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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user