2025-09-01 16:55:44 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="monitor">
|
|
|
|
|
|
<div class="search">
|
|
|
|
|
|
<div class="left">
|
|
|
|
|
|
<div class="search-item">
|
|
|
|
|
|
<span>场站切换</span>
|
2025-09-15 14:23:28 +08:00
|
|
|
|
<a-select v-model:value="selectStationId" style="width: 300px" @change="getStationChange">
|
2025-09-04 13:42:48 +08:00
|
|
|
|
<a-select-option v-for="station in stations" :value="station['station_id']"
|
|
|
|
|
|
>{{ station.name }}
|
|
|
|
|
|
</a-select-option>
|
|
|
|
|
|
</a-select>
|
2025-09-26 11:31:32 +08:00
|
|
|
|
<a-button type="primary" @click="handleMessage" style="margin-left: 20px">查看预制舱参数</a-button>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="right">
|
|
|
|
|
|
<div class="search-item">
|
|
|
|
|
|
<span>运行模式</span>
|
2025-09-09 09:39:15 +08:00
|
|
|
|
<a-select v-model:value="workMode" style="width: 220px">
|
2025-09-10 09:23:47 +08:00
|
|
|
|
<a-select-option :value="item.value" v-for="item in workModes">{{
|
|
|
|
|
|
item.label
|
|
|
|
|
|
}}</a-select-option>
|
2025-09-04 13:42:48 +08:00
|
|
|
|
</a-select>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="search-item">
|
2025-09-10 09:23:47 +08:00
|
|
|
|
<a-button type="primary" @click="handleDispatch">下发</a-button>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="content">
|
|
|
|
|
|
<div class="stations">
|
2025-09-04 13:42:48 +08:00
|
|
|
|
<div
|
|
|
|
|
|
class="station-item"
|
|
|
|
|
|
v-for="system in systems"
|
|
|
|
|
|
:key="system.name"
|
|
|
|
|
|
@click="chooseStation(system)"
|
|
|
|
|
|
:class="systemType == system.systemType ? 'active' : ''"
|
|
|
|
|
|
>
|
|
|
|
|
|
<span class="name">{{ system.name }}</span>
|
2025-09-10 09:23:47 +08:00
|
|
|
|
<span class="des" v-for="title in system.titles" :key="title.v"
|
|
|
|
|
|
>{{ title.v }}:{{ system[title.key] }}{{ title.sufix }}
|
|
|
|
|
|
</span>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="container">
|
2025-09-10 09:23:47 +08:00
|
|
|
|
<videos v-if="systemType == 4" :station-id="selectStationId" />
|
|
|
|
|
|
<device v-else :station-id="selectStationId" :system-type="systemType" />
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-09-26 11:31:32 +08:00
|
|
|
|
<a-modal
|
|
|
|
|
|
v-model:open="msgModal"
|
|
|
|
|
|
width="700px"
|
|
|
|
|
|
style="top: 80px"
|
|
|
|
|
|
:footer="null"
|
|
|
|
|
|
:destroy-on-close="true"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div style="color: #fff;padding: 20px" v-html="message"></div>
|
|
|
|
|
|
</a-modal>
|
2025-09-01 16:55:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import device from '@/components/monitor/device.vue'
|
|
|
|
|
|
import videos from '@/components/monitor/videos.vue'
|
2025-09-04 13:42:48 +08:00
|
|
|
|
import { postReq, getReq } from '@/request/api'
|
2025-09-01 16:55:44 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'MonitorView',
|
|
|
|
|
|
components: {
|
|
|
|
|
|
device,
|
|
|
|
|
|
videos
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2025-09-04 13:42:48 +08:00
|
|
|
|
// currentKey: '储能系统',
|
|
|
|
|
|
systemType: 1,
|
2025-09-01 16:55:44 +08:00
|
|
|
|
value: [],
|
2025-09-04 13:42:48 +08:00
|
|
|
|
stations: [],
|
2025-09-10 09:23:47 +08:00
|
|
|
|
selectStationId: '',
|
2025-09-26 11:31:32 +08:00
|
|
|
|
message:'',
|
|
|
|
|
|
msgModal:false,
|
2025-09-04 13:42:48 +08:00
|
|
|
|
systems: [
|
2025-09-01 16:55:44 +08:00
|
|
|
|
{
|
2025-09-04 13:42:48 +08:00
|
|
|
|
name: '储能系统',
|
2025-09-10 09:23:47 +08:00
|
|
|
|
titles: [
|
2025-09-25 19:20:25 +08:00
|
|
|
|
{ v: '运行模式', key: 'workmode' },
|
2025-09-10 09:23:47 +08:00
|
|
|
|
{ v: '总有功功率(台区)', key: 'power', sufix: 'kW' }
|
|
|
|
|
|
],
|
2025-09-04 13:42:48 +08:00
|
|
|
|
power: 60,
|
|
|
|
|
|
num: 62,
|
|
|
|
|
|
systemType: 1
|
2025-09-01 16:55:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-09-04 13:42:48 +08:00
|
|
|
|
name: '充电系统',
|
|
|
|
|
|
power: 60,
|
|
|
|
|
|
num: 62,
|
2025-09-10 09:23:47 +08:00
|
|
|
|
systemType: 2,
|
|
|
|
|
|
titles: [
|
|
|
|
|
|
{ v: '总功率', key: 'power', sufix: 'kW' },
|
|
|
|
|
|
{ v: '数量', key: 'num' }
|
|
|
|
|
|
]
|
2025-09-04 13:42:48 +08:00
|
|
|
|
},
|
2025-09-01 16:55:44 +08:00
|
|
|
|
{
|
2025-09-04 13:42:48 +08:00
|
|
|
|
name: '光伏系统',
|
2025-09-01 16:55:44 +08:00
|
|
|
|
power: 60,
|
2025-09-04 13:42:48 +08:00
|
|
|
|
num: 62,
|
2025-09-10 09:23:47 +08:00
|
|
|
|
systemType: 3,
|
|
|
|
|
|
titles: [
|
|
|
|
|
|
{ v: '总功率', key: 'power', sufix: 'kW' },
|
|
|
|
|
|
{ v: '数量', key: 'num' }
|
|
|
|
|
|
]
|
2025-09-01 16:55:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-09-04 13:42:48 +08:00
|
|
|
|
name: '安防系统',
|
2025-09-01 16:55:44 +08:00
|
|
|
|
power: 60,
|
2025-09-04 13:42:48 +08:00
|
|
|
|
num: 62,
|
2025-09-10 09:23:47 +08:00
|
|
|
|
systemType: 4,
|
|
|
|
|
|
titles: [
|
2025-09-26 11:31:32 +08:00
|
|
|
|
// { v: '总功率', key: 'power', sufix: 'kW' },
|
2025-09-10 09:23:47 +08:00
|
|
|
|
{ v: '数量', key: 'num' }
|
|
|
|
|
|
]
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
// {
|
|
|
|
|
|
// name: "储能系统4",
|
|
|
|
|
|
// }
|
2025-09-09 09:39:15 +08:00
|
|
|
|
],
|
2025-09-10 09:23:47 +08:00
|
|
|
|
workMode: '',
|
|
|
|
|
|
workModes: [
|
2025-09-09 09:39:15 +08:00
|
|
|
|
// 0:手动,1:峰谷套利,2:增网配容,3:应急供电,4:并网保电,5:自定时段
|
2025-09-25 19:20:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
value: 0,
|
|
|
|
|
|
label: '手动'
|
|
|
|
|
|
},
|
2025-09-09 09:39:15 +08:00
|
|
|
|
{
|
2025-09-10 09:23:47 +08:00
|
|
|
|
value: 1,
|
|
|
|
|
|
label: '峰谷套利'
|
2025-09-09 09:39:15 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-09-10 09:23:47 +08:00
|
|
|
|
value: 2,
|
|
|
|
|
|
label: '增网配容'
|
2025-09-09 09:39:15 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-09-10 09:23:47 +08:00
|
|
|
|
value: 3,
|
|
|
|
|
|
label: '应急供电'
|
2025-09-09 09:39:15 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-09-10 09:23:47 +08:00
|
|
|
|
value: 4,
|
|
|
|
|
|
label: '并网保电'
|
2025-09-09 09:39:15 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-09-10 09:23:47 +08:00
|
|
|
|
value: 5,
|
|
|
|
|
|
label: '自定时段'
|
2025-09-09 09:39:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
],
|
2025-09-10 09:23:47 +08:00
|
|
|
|
deviceGroup: []
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
2025-09-04 13:42:48 +08:00
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.getStations()
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2025-09-26 11:31:32 +08:00
|
|
|
|
handleMessage(){
|
|
|
|
|
|
this.msgModal=true
|
|
|
|
|
|
},
|
2025-09-10 09:23:47 +08:00
|
|
|
|
//下发
|
|
|
|
|
|
async handleDispatch() {
|
|
|
|
|
|
console.log(this.workMode)
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await postReq('/updateStation', {
|
|
|
|
|
|
station_id: this.selectStationId,
|
|
|
|
|
|
work_mode: this.workMode
|
|
|
|
|
|
})
|
|
|
|
|
|
if (res.errcode == 0) {
|
|
|
|
|
|
this.$message.success('下发成功')
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
this.$message.error('下发失败')
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-09-09 09:39:15 +08:00
|
|
|
|
//场站切换
|
2025-09-10 09:23:47 +08:00
|
|
|
|
getStationChange(val) {
|
|
|
|
|
|
console.log(val)
|
2025-09-09 09:39:15 +08:00
|
|
|
|
this.getStationAttr()
|
|
|
|
|
|
},
|
2025-09-04 13:42:48 +08:00
|
|
|
|
//查询场站列表
|
|
|
|
|
|
async getStations() {
|
|
|
|
|
|
try {
|
2025-09-10 09:23:47 +08:00
|
|
|
|
const res = await getReq('/queryStationList', { page: 0, page_size: 10000 })
|
2025-09-04 13:42:48 +08:00
|
|
|
|
|
|
|
|
|
|
this.stations = res.data
|
2025-09-10 09:23:47 +08:00
|
|
|
|
this.selectStationId = this.stations[0]['station_id']
|
2025-09-09 09:39:15 +08:00
|
|
|
|
this.getStationAttr()
|
2025-09-04 13:42:48 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
this.stations = []
|
2025-09-10 09:23:47 +08:00
|
|
|
|
this.selectStationId = ''
|
2025-09-04 13:42:48 +08:00
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-09-09 09:39:15 +08:00
|
|
|
|
// 查询场站的参数
|
2025-09-10 09:23:47 +08:00
|
|
|
|
async getStationAttr() {
|
2025-09-09 09:39:15 +08:00
|
|
|
|
try {
|
|
|
|
|
|
const res = await getReq('/queryStationOverview', { station_id: this.selectStationId })
|
|
|
|
|
|
|
2025-09-10 09:23:47 +08:00
|
|
|
|
res.data.device_group.forEach((Element, index) => {
|
|
|
|
|
|
this.systems[index].num = Element.count
|
|
|
|
|
|
this.systems[index].power = Element.power
|
2025-09-26 11:33:32 +08:00
|
|
|
|
|
2025-09-25 19:20:25 +08:00
|
|
|
|
this.systems[index].workmode = Element.workmode
|
2025-09-26 11:31:32 +08:00
|
|
|
|
if(Element.category==1){
|
|
|
|
|
|
this.message=Element.msg
|
|
|
|
|
|
}
|
2025-09-10 09:23:47 +08:00
|
|
|
|
})
|
|
|
|
|
|
this.workMode = res.data.work_mode
|
2025-09-09 09:39:15 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
this.deviceGroup = []
|
2025-09-10 09:23:47 +08:00
|
|
|
|
this.workMode = ''
|
2025-09-09 09:39:15 +08:00
|
|
|
|
// this.$message.error(error.errmsg)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2025-09-04 13:42:48 +08:00
|
|
|
|
chooseStation(system) {
|
2025-09-10 09:23:47 +08:00
|
|
|
|
console.log(system, 'system')
|
|
|
|
|
|
|
2025-09-04 13:42:48 +08:00
|
|
|
|
this.systemType = system.systemType
|
|
|
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
@import url(@/style/color.scss);
|
|
|
|
|
|
.monitor {
|
2025-09-10 09:23:47 +08:00
|
|
|
|
// width: 100%;
|
2025-09-11 16:14:55 +08:00
|
|
|
|
// height: calc(100% - 40px);
|
|
|
|
|
|
height: 100%;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: $bg1-color;
|
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
|
|
|
|
|
|
|
.search {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
.search-item {
|
|
|
|
|
|
span {
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.left,
|
|
|
|
|
|
.right {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.content {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: calc(100% - 32px - 20px);
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
.stations {
|
2025-09-10 09:23:47 +08:00
|
|
|
|
display: grid;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
background: $bg2-color;
|
2025-09-11 16:14:55 +08:00
|
|
|
|
padding-top: 15px;
|
2025-09-10 09:23:47 +08:00
|
|
|
|
grid-template-rows: repeat(auto-fit, minmax(140px, 4fr));
|
2025-09-01 16:55:44 +08:00
|
|
|
|
.station-item {
|
2025-09-10 09:23:47 +08:00
|
|
|
|
flex: 1;
|
2025-09-11 16:14:55 +08:00
|
|
|
|
margin: 0 15px 15px 15px;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
border-radius: 12px;
|
2025-09-11 16:14:55 +08:00
|
|
|
|
width: 180px;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
color: #fff;
|
2025-09-10 09:23:47 +08:00
|
|
|
|
padding: 10px 10px;
|
2025-09-04 13:42:48 +08:00
|
|
|
|
cursor: pointer;
|
2025-09-12 16:34:29 +08:00
|
|
|
|
&:hover{
|
|
|
|
|
|
background: $table-bg;
|
|
|
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
|
|
|
|
|
|
|
.name {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.des {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
line-height: 40px;
|
2025-09-10 09:23:47 +08:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
max-width: 160px;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-09-04 13:42:48 +08:00
|
|
|
|
.active {
|
2025-09-01 16:55:44 +08:00
|
|
|
|
background: $bg3-color;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.container {
|
2025-09-10 09:23:47 +08:00
|
|
|
|
width: calc(100% - 200px);
|
2025-09-04 13:42:48 +08:00
|
|
|
|
display: flex;
|
2025-09-09 09:39:15 +08:00
|
|
|
|
justify-content: space-between;
|
2025-09-01 16:55:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|