Files
admin-sjzx/src/api/supervision-boot/monitorpoint/index.ts

29 lines
609 B
TypeScript
Raw Normal View History

2024-05-16 18:08:48 +08:00
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
})
}