feat:完善信息

This commit is contained in:
张先生
2025-03-13 22:17:49 +08:00
parent a7b4f42df0
commit 15b119a994
5 changed files with 66 additions and 17 deletions

View File

@@ -117,7 +117,7 @@
</div>
</div>
<div class="box-2">
<Title1 title="安全信息(调试中) " />
<Title1 title="安全信息 " />
<div class="count-box flex">
<count-item
v-for="item in scenicStore.secureData.headList"
@@ -130,11 +130,11 @@
</div>
<div class="border flex-1">
<div class="pt-10">
<Title3 title="异常告警占比(调试中)" />
<Title3 title="异常告警占比" />
</div>
<PieRow
label="告警总数"
:dataList="scenicStore.secureData.dataList"
:dataList="list"
:total="alarmTotal"
:width="440"
:height="300"
@@ -335,6 +335,44 @@
let carOverlays = ref([])
let shipOverlays = ref([])
let list = ref([
{
name: '人群聚集识别',
count: 0,
value: 0
},
{
name: '人群计数识别',
count: 0,
value: 0
},
{
name: '游客跌倒',
count: 0,
value: 0
},
{
name: '游客攀爬',
count: 0,
value: 0
},
{
name: '违法吸烟',
count: 0,
value: 0
},
{
name: '烟火焚烧',
count: 0,
value: 0
},
{
name: '人员离岗',
count: 0,
value: 0
}
])
const garageList = computed(() => {
return scenicStore.stopCarData.headList
})