Commit 108eeb65 authored by xinzhedeai's avatar xinzhedeai

大屏接口对接-环境监测

parent 4337b25c
src/assets/jinrun/bg-left.png

233 KB | W: | H:

src/assets/jinrun/bg-left.png

219 KB | W: | H:

src/assets/jinrun/bg-left.png
src/assets/jinrun/bg-left.png
src/assets/jinrun/bg-left.png
src/assets/jinrun/bg-left.png
  • 2-up
  • Swipe
  • Onion skin
src/assets/jinrun/bg-right.png

233 KB | W: | H:

src/assets/jinrun/bg-right.png

219 KB | W: | H:

src/assets/jinrun/bg-right.png
src/assets/jinrun/bg-right.png
src/assets/jinrun/bg-right.png
src/assets/jinrun/bg-right.png
  • 2-up
  • Swipe
  • Onion skin
src/assets/jinrun/module-bg.png

51.5 KB | W: | H:

src/assets/jinrun/module-bg.png

51.5 KB | W: | H:

src/assets/jinrun/module-bg.png
src/assets/jinrun/module-bg.png
src/assets/jinrun/module-bg.png
src/assets/jinrun/module-bg.png
  • 2-up
  • Swipe
  • Onion skin
src/assets/jinrun/top.png

199 KB | W: | H:

src/assets/jinrun/top.png

194 KB | W: | H:

src/assets/jinrun/top.png
src/assets/jinrun/top.png
src/assets/jinrun/top.png
src/assets/jinrun/top.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
<template v-for="(item, index) in monitorData" :key="index"> <template v-for="(item, index) in monitorData" :key="index">
<dd class="list-item" :class="getItemClass(item)"> <dd class="list-item" :class="getItemClass(item)">
<span>{{ item.equipname }}</span> <span>{{ item.equipname }}</span>
<span>{{ item.value }}{{ item.unit }}</span> <span>{{ item.value +''}}{{ item.unit }}</span>
<span>{{ item.alarmlevel }}</span> <span>{{ item.alarmlevel }}</span>
<span class="time-cell"> <span class="time-cell">
<div class="date-part">{{ item.time?.split(' ')[0] }}</div> <div class="date-part">{{ item.time?.split(' ')[0] }}</div>
...@@ -204,6 +204,7 @@ const fetchFenceData = async () => { ...@@ -204,6 +204,7 @@ const fetchFenceData = async () => {
const fetchMonitorData = async () => { const fetchMonitorData = async () => {
const response = await getOnlineAlarmList(); const response = await getOnlineAlarmList();
if (response.data.code == 200) { if (response.data.code == 200) {
console.log(response.data.data, '在线监测列表')
monitorData.value = response.data.data monitorData.value = response.data.data
} else { } else {
message.error(response.data.msg) message.error(response.data.msg)
...@@ -459,7 +460,9 @@ onBeforeUnmount(() => { ...@@ -459,7 +460,9 @@ onBeforeUnmount(() => {
&:first-child { &:first-child {
justify-content: start; justify-content: start;
} }
&:nth-child(2){
overflow: visible;
}
&:last-child { &:last-child {
text-align: right; text-align: right;
} }
......
...@@ -908,8 +908,8 @@ onUnmounted(() => { ...@@ -908,8 +908,8 @@ onUnmounted(() => {
</div> </div>
</div> </div>
<div class="bottom"></div> <div class="bottom"></div>
<div class="left"></div> <div class="left" v-show="isLeftModulesVisible"></div>
<div class="right"></div> <div class="right" v-show="isRightModulesVisible"></div>
<!-- 非cesium相关 开始 --> <!-- 非cesium相关 开始 -->
...@@ -1235,6 +1235,9 @@ span { ...@@ -1235,6 +1235,9 @@ span {
width: 100%; width: 100%;
height: 100%; height: 100%;
position: relative; position: relative;
&>img{
width: 100%;
}
.second-icon { .second-icon {
position: absolute; position: absolute;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment