50 lines
4.1 KiB
JavaScript
50 lines
4.1 KiB
JavaScript
import {post, get, put} from '../http'
|
|
|
|
// 高边坡配置
|
|
export const addDeepExcavationEngineeringApi = data => post('xmgl/highSlopeEngineering/add', data); //添加深高边坡-工程信息
|
|
export const editDeepExcavationEngineeringApi = data => post('xmgl/highSlopeEngineering/edit', data); //编辑深高边坡-工程信息
|
|
export const deleteDeepExcavationEngineeringApi = data => post('xmgl/highSlopeEngineering/delete', data); //删除深高边坡-工程信息
|
|
export const selectDeepExcavationListApi = data => post('xmgl/highSlopeEngineering/list', data); //列表查询深高边坡-工程信息
|
|
export const getDefaultMonitorTypeListApi = data => post('xmgl/highSlopeMonitorType/getDefaultMonitorTypeList', data); //列表查询默认深高边坡-监测类型列表
|
|
export const queryByIdDeepExcavationEngineeringApi = data => post('xmgl/highSlopeEngineering/queryById', data); //通过id查询深高边坡-工程信息
|
|
export const selectDeepExcavationMonitorTypeListApi = data => post('xmgl/highSlopeMonitorType/page', data); //分页列表查询深高边坡-监测类型
|
|
|
|
// 测点
|
|
export const selectMeasurePointListApi = data => post('xmgl/highSlopeMeasurePoint/selectMeasurePointList', data); //列表查询深高边坡-测点信息
|
|
export const addDeepExcavationMeasurePointApi = data => post('xmgl/highSlopeMeasurePoint/add', data); //添加深高边坡-测点信息
|
|
export const editDeepExcavationMeasurePointApi = data => post('xmgl/highSlopeMeasurePoint/edit', data); //编辑深高边坡-测点信息
|
|
export const deleteDeepExcavationMeasurePointApi = data => post('xmgl/highSlopeMeasurePoint/delete', data); //删除深高边坡-测点信息
|
|
export const getDetailDeepExcavationApi = data => get('/xmgl/highSlopeMeasurePoint/getDetailsByMeasurePointNumber', data); //测点信息-测点管理-详情
|
|
export const getSensorListApi = data => get('/xmgl/highSlopeSensor/getSensorListByMeasurePointNumber', data); //通过测点编号查询传感器列表
|
|
|
|
|
|
export const selectDeepExcavationSensorTypeListApi = data => post('xmgl/highSlopeSensorType/selectHighSlopeSensorTypeList', data); //列表查询深高边坡-传感器类型信息
|
|
|
|
// 高边坡监测内容实时数据
|
|
export const selectDeepExcavationCurrentDataListApi = data => post('xmgl/highSlopeCurrentData/selectHighSlopeCurrentDataList', data); //列表查询深高边坡监测内容-实时数据
|
|
export const selectDeepExcavationCurrentDataApi = data => post('xmgl/highSlopeCurrentData/list', data); //分页查询深高边坡监测内容-实时数据
|
|
|
|
// 添加高边坡平面图
|
|
export const addDeepExcavationPlaneFigureApi = data => post('xmgl/highSlopePlaneFigure/add', data);
|
|
// 编辑高边坡平面图
|
|
export const editDeepExcavationPlaneFigureApi = data => post('xmgl/highSlopePlaneFigure/edit', data);
|
|
// 删除高边坡平面图
|
|
export const deleteDeepExcavationPlaneFigureApi = data => post('xmgl/highSlopePlaneFigure/delete', data);
|
|
// 列表查询高边坡平面图
|
|
export const selectDeepExcavationPlaneFigureListApi = data => post('xmgl/highSlopePlaneFigure/selectList', data);
|
|
// 列表查询高边坡平面图点位位置信息
|
|
export const selectDeepExcavationPlaneFigureCoordinateApi = data => post('xmgl/highSlopePlaneFigureCoordinate/list', data);
|
|
// 列表查询所有测点
|
|
export const selectDeepExcavationAllMeasurePointListApi = data => post('xmgl/highSlopeMeasurePoint/selectHighSlopeAllMeasurePointList', data);
|
|
// 保存测点点位信息
|
|
export const editDeepExcavationPlaneFigureCoordinateApi = data => post('xmgl/highSlopePlaneFigureCoordinate/updateFigureCoordinate', data);
|
|
// 告警总数查询
|
|
export const selectMonitorTypeAlarmCountListApi = data => post('xmgl/highSlopeMonitorType/selectMonitorTypeAlarmCountList', data);
|
|
// 查询监测内容列表以及测点汇总
|
|
export const selectMonitorTypeCountApi = data => post('xmgl/highSlopeMonitorType/selectMonitorTypeCount', data);
|
|
// 查询监测内容近七天报警 预警数
|
|
export const selectMonitorTypeListApi = data => post('xmgl/highSlopeMonitorType/selectMonitorTypeList', data);
|
|
// 查询高边坡内容详情
|
|
export const queryByIdDeepExcavationMonitorTypeApi = data => post('xmgl/highSlopeMonitorType/queryById', data);
|
|
|