diff --git a/src/api/home-foundation-pit.js b/src/api/home-foundation-pit.js new file mode 100644 index 0000000..c125bf5 --- /dev/null +++ b/src/api/home-foundation-pit.js @@ -0,0 +1,34 @@ +import request from '@/utils/request' + +// 深基坑监测 ---- 设备列表接口 左二 +export function getMassConcreteListAPI(data) { + return request({ + url: '/smart-site/excavationDetection/getMassConcreteList', + method: 'post', + data, + }) +} +// 深基坑监测 ---- 设备统计接口 右一 +export function getDevStatisticsAPI(data) { + return request({ + url: '/smart-site/excavationDetection/getDevStatistics', + method: 'post', + data, + }) +} +// 深基坑监测 ---- 报警信息 右二 +export function getConcreteAlarmListAPI(data) { + return request({ + url: '/smart-site/excavationDetection/concreteAlarmList', + method: 'post', + data, + }) +} +// 深基坑监测 ---- 监测温度变化值趋势接口 右二 +export function getTemperatureListAPI(data) { + return request({ + url: '/smart-site/massConcrete/temperatureList', + method: 'post', + data, + }) +} diff --git a/src/views/home-foundation-pit/components/left-three-model.vue b/src/views/home-foundation-pit/components/left-three-model.vue index 2ec305c..3c9e5e4 100644 --- a/src/views/home-foundation-pit/components/left-three-model.vue +++ b/src/views/home-foundation-pit/components/left-three-model.vue @@ -1,7 +1,7 @@