Files
tunnel-cloud-web/src/components/content/airInfo/AirInfo.vue

398 lines
10 KiB
Vue

<template>
<div id="air-info">
<div style="height: 21px" v-if="airList.length!==0"></div>
<div class="fan-speed">
<div>
<img src="@/assets/images/airInfo/fan-v-icon.png" alt=""/>
<div class="fan-info" @click="handleOpenChart(windSpeedId)">
<div class="input-fan"><span>风速</span>{{ windSpeed }}m/s</div>
</div>
</div>
<div class="wind-direction-info" @click="handleOpenChart(windDirectionSpeedId)">
<div class="input-fan"><span>风向</span>{{ windDirection }} °</div>
</div>
</div>
<item-info
v-for="(item,index) in airList"
:key="index"
:wp="item"
@click="handleOpenChart(item,'air')"
/>
<div style="height: 1px" v-if="airList.length!==0"></div>
<div class="digital-tunnel">
<el-dialog :close-on-click-modal="false" v-model="isWindSpeedVisited" :title="dialogTitle+'监控数据'" width="2175px"
:modal="false">
<div class="left-top-icon"></div>
<div class="right-top-icon"></div>
<div class="loading-block" v-if="showSpeedLoading">
<div class="loading" v-if="loadingText==='加载中...'"></div>
<span>{{ loadingText }}</span>
</div>
<div class="chat-dialog" v-else>
<div id="containerWind"></div>
<div style="width: 1px;"></div>
</div>
<div class="time-select">
<choose-day v-if="selectTimeButton===2" ref="chooseDayRef" @select="daySelect"/>
<choose-month v-if="selectTimeButton===1" ref="chooseMonthRef" @select="monthSelect"/>
<time-range-btn
:buttonList="timeList"
v-model="selectTimeButton"
@select="timeSelect"
/>
</div>
<div class="left-bottom-icon"></div>
<div class="right-bottom-icon"></div>
</el-dialog>
</div>
</div>
</template>
<script setup>
import ItemInfo from "./childComps/ItemInfo.vue";
import TimeRangeBtn from "@/components/timeRangeBtn/index.vue"
import * as echarts from 'echarts';
import {getEchartsInfo} from "@/api/largeScreen";
import ChooseDay from "@/components/chooseDay/index.vue"
import ChooseMonth from "@/components/chooseMonth/index.vue"
let myEcharts = reactive({});
const props = defineProps({
list: Array,
airData: Array
});
const chooseDayRef = ref();
const chooseMonthRef = ref();
const windSpeed = ref(0)
const windDirection = ref(0)
const loadingText = ref('加载中...')
const windSpeedId = ref(0)
const windDirectionSpeedId = ref(0)
const dialogTitle = ref('风速')
const openDialogId = ref(0)
const airList = ref([])
const timeList = ref(["年", "月", "日"]);
const selectTimeButton = ref(2);
const isWindSpeedVisited = ref(false);
const showSpeedLoading = ref(false)
watch(() => props.list, (now) => {
airList.value?.forEach(item => {
now.forEach(newItem => {
if (item.equipmentId === newItem.equipmentId) {
item.value = newItem.value
}
})
})
}, {deep: true});
watch(() => props.airData, (now) => {
if (now.sensorList.length !== 0) {
if (now.sensorList.length === 0) {
airList.value = []
} else {
getAirInfo(now.sensorList)
}
} else {
airList.value = []
windSpeed.value = 0
}
}, {deep: true});
const daySelect = (val) => {
getChartInfo(openDialogId.value, 'day',val)
}
const monthSelect = (val) => {
getChartInfo(openDialogId.value, 'month',val)
}
const getChartInfo = (equipmentId, type = 'day',time='') => {
isWindSpeedVisited.value = true
showSpeedLoading.value = true
getEchartsInfo(equipmentId,time, type).then(res => {
if (res?.code === 1000) {
showSpeedLoading.value = false
nextTick(() => {
initChart(res.data.dates, res.data.values)
})
} else {
loadingText.value = res.msg
}
})
nextTick(() => {
loadingText.value = '加载中...'
})
}
const handleOpenChart = (id, type) => {
selectTimeButton.value = 2
nextTick(()=>{
if(chooseMonthRef.value){
chooseMonthRef.value.clearData()
}
if(chooseDayRef.value){
chooseDayRef.value.clearData()
}
})
if (type === 'air') {
dialogTitle.value = id.name
openDialogId.value = id.equipmentId
getChartInfo(id.equipmentId, 'day')
} else {
if (id === 11) {
dialogTitle.value = '风向'
} else {
dialogTitle.value = '风速'
}
openDialogId.value = id
getChartInfo(id, 'day')
}
}
const changeDate = (index) => {
switch (index) {
case 0:
return 'years'
case 1:
return 'month'
case 2:
return 'day'
}
}
const timeSelect = (index) => {
getChartInfo(openDialogId.value, changeDate(index))
};
const changeData = (item) => {
return {
equipmentId: item.equipmentId,
icon: changeIcon(item.equipmentType),
name: item.equipmentName.slice(0, 2),
max: 120,
value: item.value,
point: item.valueThreshold,
unit: item.unit
}
}
const changeIcon = (type) => {
switch (type) {
case "oxygen":
return 'o2-icon.png';
case "temperature":
return 'tempture-icon.png';
case "humidness":
return 'water-icon.png';
}
}
const getAirInfo = (now) => {
if (now === null) return;
let airObj = {}
let airArr = []
now?.map(item => {
if (item.equipmentType === "oxygen" || item.equipmentType === "temperature" || item.equipmentType === "humidness") {
airObj = changeData(item)
airArr.push(airObj)
} else if (item.equipmentType === "windSpeed") {
windSpeedId.value = item.equipmentId
windSpeed.value = item.value
} else if (item.equipmentType === "windDirection") {
windDirectionSpeedId.value = item.equipmentId
windDirection.value = item.value
}
})
if (airArr.length !== 0) {
airArr.push(airArr.shift())
airList.value = airArr
}
}
const initChart = (type, values) => {
//3.初始化container容器
myEcharts = echarts.init(document.getElementById('containerWind'));
//5.传入数据
let option = {
//图例
legend: {
// left: 0,
textStyle: {
color: '#FFFFFF',
fontSize: 40
},
itemWidth: 70,
itemHeight: 5,
icon: "rect",
},
//离容器四侧的距离
grid: {
left: 0, // 左边距
right: 20, // 右边距
top: 80, // 顶边距
bottom: 170, // 底边距
containLabel: true,
},
//提示框组件
tooltip: {
show: true,
trigger: 'axis',
backgroundColor: "transparent", // 设置背景颜色为透明
borderColor: "transparent", // 设置边框颜色为透明
padding: 0, // 设置内边距为0
textStyle: {
fontSize: 40
},
formatter: function (params) {
let content = `
<div style="background: linear-gradient(180deg, #254062 0%, rgba(20,36,51,0.3) 100%);;border: 2px solid #6087BA;border-radius: 4px;padding: 8px 16px;">
<div style="font-size: 52px;font-family: PingFang SC-Regular, PingFang SC;font-weight: 400;color: #EFEEEE;margin-bottom: 8px;">${params[0].name}</div>
<div style="font-size: 48px;line-height: 48px;font-family: Bebas Neue-Regular, Bebas Neue;font-weight: 400;"><span style="background: linear-gradient(180deg, #F5B85F 0%, #FFFFFF 100%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;">${params[0].value}</span></div>
</div>`;
return content;
},
},
toolbox: {
show: false,
right: 10,
feature: {
dataZoom: {
yAxisIndex: 'none'
}
}
},
dataZoom: [{
type: 'inside'
},
{
type: 'slider',
top: 1050,
height: 100,
textStyle: {
fontSize: 45,
color: '#fffff'
}
}
],
//X轴
xAxis: {
type: 'category',
// data: ['00:00', '01:00', '02:00', '03:00', '04:00', '05:00', '06:00', '07:00', '08:00', '09:00', '10:00', '11:00', '12:00', '13:00', '14:00', '15:00', '16:00', '17:00', '18:00', '19:00', '20:00', '21:00', '22:00', '23:00', '24:00'],
data: type,
axisLabel: {
textStyle: {
fontSize: 45,
color: '#D6F1FA'
},
},
},
//Y轴
yAxis: {
type: 'value',
axisLabel: {
textStyle: {
fontSize: 45,
color: '#D6F1FA'
},
},
},
//配置项
series: [
{
// data: [3, 85, 47, 92, 17, 76, 69, 25, 56, 12, 89, 34, 71, 43, 67, 20, 98, 72, 19, 61, 31, 49, 81, 63],
data: values,
type: 'line',
smooth: true,
symbolSize: 24,
lineStyle: {
width: 5
}
}
]
}
myEcharts.setOption(option);
//图表大小自适应窗口大小变化
window.onresize = () => {
myEcharts.resize();
}
}
</script>
<style lang="scss" scoped>
#air-info {
//min-height: 350px;
margin-top: 30px;
//position: absolute;
z-index: 100;
width: 824px;
border: 2px solid #0f82af;
background: rgba(6, 34, 71, 0.78);
border-radius: 20px;
//height: 400px;
//top: 1003px;
//right: 72px;
//background-image: url(@/assets/images/airInfo/bg.png);
//padding: 25px 20px 1px 21px;
.fan-speed {
box-sizing: border-box;
display: flex;
//height: 40px;
font-size: 30px;
color: #ffffff;
align-items: center;
padding: 5px 0 5px 15px;
margin-bottom: 15px;
margin-left: 21px;
> div:first-child {
display: flex;
}
img {
width: 29px;
height: 34px;
}
.wind-direction-info {
flex: 1;
display: flex;
justify-content: flex-end;
margin-right: 54px;
.input-fan {
cursor: pointer;
&:hover {
//width: 230px;
padding-left: 20px;
//padding-right: 20px;
background: #2E5589;
border-radius: 6px;
}
> span:first-child {
//margin-left: 25px;
margin-right: 25px;
}
}
}
.fan-info {
flex: 1;
display: flex;
justify-content: flex-start;
cursor: pointer;
.input-fan {
//margin: 0 26px;
&:hover {
width: 230px;
background: #2E5589;
border-radius: 6px;
}
> span:first-child {
margin-left: 25px;
margin-right: 25px;
}
}
}
}
}
</style>