Browse Source

烟雾浸水区分,提示词

develop
wangsixiang 1 month ago
parent
commit
b7c33c9816
  1. 8
      ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/IntegratedCabinet/components/DeviceControlDialog.vue
  2. 17
      ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/IntegratedCabinet/components/DeviceParams.vue

8
ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/IntegratedCabinet/components/DeviceControlDialog.vue

@ -24,6 +24,9 @@
<!-- <el-switch active-color="#01AAFD" inactive-color="#bbbbbb" v-model="reclosing" active-text="开启" inactive-text="关闭" @change="reclosingSwitch"></el-switch> -->
</div>
</div>
<div class="tips">
<p>门禁开关与频闪灯开关一致,当门禁打开时频闪灯也会打开,当门禁关闭时,频闪灯也会关闭</p>
</div>
</div>
</Dialog>
</template>
@ -346,6 +349,11 @@
.el-switch {
/* 这里的样式可以根据您的需求进行调整,例如大小、颜色等 */
flex-shrink: 0; /* 通常不是必需的,因为开关组件本身有固定大小,但加上也无妨 */
}
.tips {
margin-top: 20px; /* 根据需要调整上边距 */
padding: 20px;
color: rgb(231, 237, 244); /* 文字颜色 */
}
</style>

17
ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/IntegratedCabinet/components/DeviceParams.vue

@ -18,6 +18,12 @@
<span>{{ data.text }}</span>
</template>
</Descriptions>
<h3>烟雾/浸水监测:</h3>
<Descriptions :list="monitor" :data="devicesData" style="gap: 18px;" column="6">
<template v-for="item in devicesList.slice(0, -1)" #[`content-${getSlotKey(item.key)}`]="{ data }">
<span>{{ data.text }}</span>
</template>
</Descriptions>
</div>
</template>
@ -48,6 +54,7 @@
secondLoading: true,
devicesList: [],
environment: [],
monitor:[],
devicesData: {},
activeOption: {
active: {
@ -63,6 +70,7 @@
this.devicesList = [];
let devs = [];
let envDevs = []; //
let mon = []; //
// Promise.all([this.getAc('A1'), this.getAc('A2'), this.getAc('A3'), this.getAc('A4'), this.getAc('A5'), this.getAc('A6')]).then(res => {
await request({
@ -111,6 +119,14 @@
gridColumn: 3,
});
this.devicesData[item.property] = item.formatValue;
}else if(item.propertyName === "烟雾报警" || item.propertyName === "烟雾报警阈值"||
item.propertyName === "水浸检测"|| item.propertyName === "侵水电压阈值"){
mon.push({
label: item.propertyName,
key: item.property,
gridColumn: 3,
});
this.devicesData[item.property] = item.formatValue;
} else {
// devicesList
devs.push({
@ -124,6 +140,7 @@
});
this.devicesList = devs;
this.environment = envDevs; // environment
this.monitor = mon; // environment
})
},
methods: {

Loading…
Cancel
Save