139 lines
3.0 KiB
Vue
Raw Normal View History

2022-10-17 10:13:22 +08:00
<template>
<Card title="喷淋预警">
2022-10-17 10:13:22 +08:00
<div class="containerBox">
<div class="dataBoardContent">
<vue-scroll>
<table class="greenTable">
<thead>
<tr>
<th>设备名称</th>
<th>设备状态</th>
2022-10-17 10:13:22 +08:00
<th>报警类型</th>
<th>超标值</th>
<th>喷淋次数</th>
2022-10-17 10:13:22 +08:00
</tr>
</thead>
<tbody>
<tr v-for="i in 8" :key="i">
<td>一号设备</td>
<td>离线</td>
<td>pm2.5</td>
<td>μg/m3</td>
<td>2</td>
2022-10-17 10:13:22 +08:00
</tr>
</tbody>
</table>
<!-- <div class="placeholderBox placeholderBox2" v-if="alarmList.length == 0">
2022-10-17 10:13:22 +08:00
<img src="@/assets/images/noData3.png" alt srcset />
<p>
暂无数据
{{$t('message.dataBoard.nodata')}} -->
<!-- </p> -->
<!-- </div> -->
2022-10-17 10:13:22 +08:00
</vue-scroll>
</div>
</div>
</Card>
</template>
<script>
import Card from "../components/Card.vue";
export default {
components: { Card },
data() {
return {
// alarmList: [
// {
// deviceName: "一号设备",
// tempAlarmTime: "塔吊喷淋",
// show: true
// },
// {
// deviceName: "一号设备",
// tempAlarmTime: "塔吊喷淋",
// show: false
// },
// {
// deviceName: "一号设备",
// tempAlarmTime: "塔吊喷淋",
// show: false
// },
// {
// deviceName: "一号设备",
// tempAlarmTime: "塔吊喷淋",
// show: true
// },
// {
// deviceName: "一号设备",
// tempAlarmTime: "塔吊喷淋",
// show: false
// },
// ],
2022-10-17 10:13:22 +08:00
value: true
};
}
};
</script>
<style lang="less" scoped>
.containerBox {
width: 100%;
height: 100%;
.titleTxt {
font-size: 18px;
color: #6ee4f0;
margin-top: 5px;
margin-left: 5px;
}
.greenTable {
th {
color:#72bdc9;
border-bottom: 1px solid rgba(31, 68, 86, 0.3);
line-height: 35px;
//opacity: 0.8;
2022-10-17 10:13:22 +08:00
}
td {
color: #FFF;
2022-10-17 10:13:22 +08:00
line-height: 35px;
}
}
.alarmType {
position: relative;
left: 40%;
width: 35px;
height: 15px;
background-color: #08b58a;
border-radius: 8px;
}
.alarmType::before {
content: "";
position: absolute;
top: 1px;
left: 3px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #fff;
}
.unAlarm {
position: relative;
left: 40%;
width: 35px;
height: 15px;
background-color: #6d7077;
border-radius: 8px;
}
.unAlarm::before {
content: "";
position: absolute;
top: 1px;
right: 3px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #fff;
}
}
</style>