2025-09-01 16:55:44 +08:00
|
|
|
|
<template>
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<div class="device" ref="device">
|
2025-09-04 13:42:48 +08:00
|
|
|
|
<div class="device-item" v-for="item in deviceList" :key="item">
|
2025-09-01 16:55:44 +08:00
|
|
|
|
<div class="item-header">
|
2025-09-04 13:42:48 +08:00
|
|
|
|
<div style="display: flex; width: 50%">
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<div class="icon-bg">
|
|
|
|
|
|
<span class="iconfont" :class="getIcongont(item)"></span>
|
|
|
|
|
|
</div>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
<div class="title">
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<span class="number">{{ item.device_id }}</span>
|
|
|
|
|
|
<span class="name">{{ item.name }}</span>
|
|
|
|
|
|
<span class="number type">{{ item.typename }}</span>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="status">
|
|
|
|
|
|
<div class="status-item">
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<span>{{ ['离线', '在线'][item.is_online] }}</span>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
<span class="text">在线状态</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="status-item">
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<span>{{ ['正常', '错误'][item.is_error] }}</span>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
<span class="text">故障状态</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="status-item">
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<span>{{ ['空闲', '工作'][item.is_running] }}</span>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
<span class="text">工作状态</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item-content">
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<div v-for="info in item.params" :key="info.k" class="item-info">
|
|
|
|
|
|
<span class="text">{{ info.k }}:</span>
|
|
|
|
|
|
|
|
|
|
|
|
<span class="value">{{ info.v }}</span>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<div v-if="item.view == 1" class="item-button">
|
|
|
|
|
|
<span class="text">实时数据:</span>
|
|
|
|
|
|
<a-button type="primary" size="small" @click="openModal(item)">查看</a-button>
|
|
|
|
|
|
</div>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<a-modal
|
|
|
|
|
|
v-model:open="modalOpen"
|
|
|
|
|
|
@ok="handleOk"
|
|
|
|
|
|
width="90%"
|
|
|
|
|
|
class="modal-device"
|
|
|
|
|
|
:get-container="() => $refs.device"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div class="title">
|
|
|
|
|
|
<div>电流电压</div>
|
|
|
|
|
|
<img src="@/assets/images/titleLine.png" alt="" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="echarts">
|
|
|
|
|
|
<predictEcharts
|
|
|
|
|
|
:chart-options="chartOptions[0]"
|
|
|
|
|
|
:chart-data="chartData"
|
|
|
|
|
|
ref="chartRef1"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div class="title">
|
|
|
|
|
|
<div>功率</div>
|
|
|
|
|
|
<img src="@/assets/images/titleLine.png" alt="" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="echarts">
|
|
|
|
|
|
<predictEcharts
|
|
|
|
|
|
:chart-options="chartOptions[1]"
|
|
|
|
|
|
:chart-data="chartData"
|
|
|
|
|
|
ref="chartRef2"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</a-modal>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-09-09 09:39:15 +08:00
|
|
|
|
import predictEcharts from '@/components/predict/predictEcharts.vue'
|
2025-09-04 13:42:48 +08:00
|
|
|
|
import { postReq, getReq } from '@/request/api'
|
2025-09-09 09:39:15 +08:00
|
|
|
|
import { deviceTypeList } from '@/utils/config'
|
2025-09-01 16:55:44 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: '',
|
2025-09-09 09:39:15 +08:00
|
|
|
|
components: { predictEcharts },
|
2025-09-04 13:42:48 +08:00
|
|
|
|
props: {
|
|
|
|
|
|
stationId: {
|
|
|
|
|
|
type: String,
|
|
|
|
|
|
default: ''
|
|
|
|
|
|
},
|
|
|
|
|
|
systemType: {
|
|
|
|
|
|
type: Number,
|
|
|
|
|
|
default: 1
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-09-01 16:55:44 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2025-09-04 13:42:48 +08:00
|
|
|
|
modalOpen: false,
|
|
|
|
|
|
deviceList: [],
|
2025-09-01 16:55:44 +08:00
|
|
|
|
chunengInfo: [
|
2025-09-04 13:42:48 +08:00
|
|
|
|
{ label: '运行模式', key: 'operationMode', value: '并网运行' },
|
|
|
|
|
|
{ label: '电池储能容量', key: 'batteryCapacity', value: '100kWh' },
|
2025-09-01 16:55:44 +08:00
|
|
|
|
{ label: '实时电压', key: 'voltage', value: '232.5V' },
|
|
|
|
|
|
{ label: '功率因数', key: 'powerFactor', value: '0.95' },
|
|
|
|
|
|
{ label: '实时电流', key: 'current', value: '0.01A' },
|
|
|
|
|
|
{ label: '额定电压', key: 'ratedVoltage', value: '232.5V' },
|
|
|
|
|
|
{ label: '实时功率', key: 'power', value: '0.01kW' },
|
|
|
|
|
|
{ label: '额定电流', key: 'ratedCurrent', value: '0.01A' },
|
|
|
|
|
|
{ label: '实时数据', key: 'realTimeData', value: '0.01kWh' },
|
|
|
|
|
|
{ label: '额定功率', key: 'ratedPower', value: '0.01kW' },
|
|
|
|
|
|
{ label: '冷却方式', key: 'coolingMethod', value: '风冷' }
|
2025-09-09 09:39:15 +08:00
|
|
|
|
],
|
|
|
|
|
|
chartOptions: [
|
|
|
|
|
|
{
|
|
|
|
|
|
type: 'line',
|
|
|
|
|
|
smooth: true,
|
|
|
|
|
|
dataKey: 'chargeDischarge',
|
|
|
|
|
|
infoKeys: [
|
|
|
|
|
|
{
|
|
|
|
|
|
key: 'V',
|
|
|
|
|
|
label: '电压',
|
|
|
|
|
|
seriesOptions: {
|
|
|
|
|
|
symbol: 'circle',
|
|
|
|
|
|
symbolSize: 8,
|
|
|
|
|
|
itemStyle: {
|
|
|
|
|
|
color: '#00FDF9' // 充电电量线条颜色
|
|
|
|
|
|
},
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#00FDF9' // 充电电量线条颜色
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
key: 'I',
|
|
|
|
|
|
label: '电流',
|
|
|
|
|
|
seriesOptions: {
|
|
|
|
|
|
symbol: 'circle',
|
|
|
|
|
|
symbolSize: 8,
|
|
|
|
|
|
itemStyle: {
|
|
|
|
|
|
color: '#3E7EEF' // 充电电量线条颜色
|
|
|
|
|
|
},
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#3E7EEF' // 充电电量线条颜色
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
type: 'line',
|
|
|
|
|
|
smooth: true,
|
|
|
|
|
|
dataKey: 'chargeDischarge',
|
|
|
|
|
|
infoKeys: [
|
|
|
|
|
|
{
|
|
|
|
|
|
key: 'P',
|
|
|
|
|
|
label: '功率',
|
|
|
|
|
|
seriesOptions: {
|
|
|
|
|
|
symbol: 'circle',
|
|
|
|
|
|
symbolSize: 8,
|
|
|
|
|
|
itemStyle: {
|
|
|
|
|
|
color: '#00FDF9' // 充电电量线条颜色
|
|
|
|
|
|
},
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#00FDF9' // 充电电量线条颜色
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
chartData: {
|
|
|
|
|
|
xdata: [],
|
|
|
|
|
|
ydata: {}
|
|
|
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-09-04 13:42:48 +08:00
|
|
|
|
watch: {
|
|
|
|
|
|
// 监听父组件数据变化
|
|
|
|
|
|
stationId(newVal) {
|
|
|
|
|
|
if (newVal) {
|
|
|
|
|
|
this.getDeviceList()
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
systemType(newVal, oldVal) {
|
|
|
|
|
|
if (newVal !== oldVal) {
|
|
|
|
|
|
this.getDeviceList()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.getDeviceList()
|
|
|
|
|
|
},
|
2025-09-01 16:55:44 +08:00
|
|
|
|
methods: {
|
2025-09-09 09:39:15 +08:00
|
|
|
|
getIcongont(ele) {
|
|
|
|
|
|
return deviceTypeList.find((item) => item.value == ele.type).iconfont || ''
|
|
|
|
|
|
},
|
|
|
|
|
|
generateTimePoints() {
|
|
|
|
|
|
const timePoints = []
|
|
|
|
|
|
|
|
|
|
|
|
for (let hour = 0; hour <= 24; hour++) {
|
|
|
|
|
|
for (let minute = 0; minute < 60; minute += 10) {
|
|
|
|
|
|
// 处理24:00的特殊情况
|
|
|
|
|
|
if (hour === 24 && minute === 0) {
|
|
|
|
|
|
timePoints.push('24:00')
|
|
|
|
|
|
break
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 格式化小时和分钟,确保两位数
|
|
|
|
|
|
const formattedHour = hour.toString().padStart(2, '0')
|
|
|
|
|
|
const formattedMinute = minute.toString().padStart(2, '0')
|
|
|
|
|
|
|
|
|
|
|
|
timePoints.push(`${formattedHour}:${formattedMinute}`)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return timePoints
|
|
|
|
|
|
},
|
|
|
|
|
|
//查看实时数据
|
|
|
|
|
|
async getDevicCharts(item) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await getReq('/queryDevicCharts', {
|
|
|
|
|
|
station_id: this.stationId,
|
|
|
|
|
|
device_id: item.device_id
|
|
|
|
|
|
})
|
|
|
|
|
|
this.chartData.ydata = res.data
|
|
|
|
|
|
this.chartData.xdata = this.generateTimePoints()
|
|
|
|
|
|
this.$refs.chartRef1.initCharts()
|
|
|
|
|
|
this.$refs.chartRef2.initCharts()
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.log(error)
|
2025-09-04 13:42:48 +08:00
|
|
|
|
}
|
2025-09-09 09:39:15 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
//请求运行监控系统设备信息
|
|
|
|
|
|
async getDeviceList() {
|
2025-09-04 13:42:48 +08:00
|
|
|
|
try {
|
2025-09-09 09:39:15 +08:00
|
|
|
|
const res = await getReq('/queryDevicByCategory', {
|
|
|
|
|
|
station_id: this.stationId,
|
|
|
|
|
|
category: this.systemType
|
|
|
|
|
|
})
|
2025-09-04 13:42:48 +08:00
|
|
|
|
|
|
|
|
|
|
this.deviceList = res.data
|
|
|
|
|
|
} catch (error) {
|
2025-09-09 09:39:15 +08:00
|
|
|
|
this.deviceList = []
|
|
|
|
|
|
|
2025-09-04 13:42:48 +08:00
|
|
|
|
console.log(error)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-09-09 09:39:15 +08:00
|
|
|
|
async openModal(item) {
|
|
|
|
|
|
await this.getDevicCharts(item)
|
|
|
|
|
|
|
2025-09-04 13:42:48 +08:00
|
|
|
|
this.modalOpen = true
|
2025-09-01 16:55:44 +08:00
|
|
|
|
},
|
2025-09-04 13:42:48 +08:00
|
|
|
|
handleOk() {
|
|
|
|
|
|
this.modalOpen = false
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.device {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-gap: 20px;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
.device-item {
|
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
|
|
|
|
|
|
|
background: $bg2-color;
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
.item-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
height: 70px;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
.icon-bg {
|
2025-09-09 09:39:15 +08:00
|
|
|
|
width: 66px;
|
|
|
|
|
|
height: 66px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
line-height: 66px;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
background: linear-gradient(90deg, #3dfefa 0%, #2a82e4 2.96%, #27a188 100%),
|
|
|
|
|
|
linear-gradient(90deg, #3dfefa 0%, #01dfef 2.96%, #08a5ff 100%);
|
2025-09-09 09:39:15 +08:00
|
|
|
|
.iconfont {
|
|
|
|
|
|
font-size: 50px;
|
|
|
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
.title {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.number {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.name {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.type {
|
|
|
|
|
|
color: #08a5ff;
|
|
|
|
|
|
}
|
|
|
|
|
|
.status {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 50%;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
&-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
|
span:first-child {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
|
|
|
|
|
.text {
|
|
|
|
|
|
color: $text-color;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.item-content {
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
display: grid;
|
2025-09-09 09:39:15 +08:00
|
|
|
|
// line-height: 45px;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
padding: 0 10px;
|
2025-09-09 09:39:15 +08:00
|
|
|
|
height: 120px;
|
|
|
|
|
|
overflow-y: auto;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
.value {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
2025-09-09 09:39:15 +08:00
|
|
|
|
.item-info {
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.item-button {
|
|
|
|
|
|
padding-left: 10px;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
.text {
|
|
|
|
|
|
color: $text-color;
|
|
|
|
|
|
}
|
|
|
|
|
|
.video {
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.environment {
|
|
|
|
|
|
width: 200px;
|
|
|
|
|
|
}
|
2025-09-09 09:39:15 +08:00
|
|
|
|
:deep(.modal-device) {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
.title {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
width: 232px;
|
|
|
|
|
|
height: 6px;
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.echarts {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 280px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</style>
|