From 66a279f8990859e42949310e6607f0a4476c1e1b Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Fri, 18 Apr 2025 10:39:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=B1=E5=9F=BA=E5=9D=91=E7=9B=91=E6=B5=8B?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=B0=83=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/home-foundation-pit.js | 34 +++ .../components/left-three-model.vue | 89 ++++-- .../components/left-two-model.vue | 116 +++++--- .../components/right-one-model.vue | 36 ++- .../components/right-two-model.vue | 280 +++++------------- .../components/left-one-model.vue | 4 +- src/views/index.vue | 2 - 7 files changed, 287 insertions(+), 274 deletions(-) create mode 100644 src/api/home-foundation-pit.js 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 @@