Newer
Older
smartwell_front / src / views / home / alarm / count / index.vue
liyaguang on 11 Mar 900 bytes 功能优化
<!--
  Description: 报警管理-报警统计
  Author: 李亚光
  Date: 2023-07-08
 -->
<script lang="ts" setup name="AlarmCount">
import overallAlarm from './components/overallAlarm.vue'
import alarmStatistics from './components/alarmStatistics.vue'
import trendAnalysis from './components/trendAnalysis.vue'
import deptCount from './components/deptCount.vue'
import locationAnalysis from './components/locationAnalysis.vue'
</script>

<template>
  <!-- 布局 -->
  <app-container>
    <!-- 报警总体情况 -->
    <overall-alarm />
    <!-- 各类报警统计 -->
    <alarm-statistics style="margin-top: 10px;" />
    <!-- 各单位报警统计 -->
    <dept-count style="margin-top: 10px;" />
    <!-- 报警趋势分析 -->
    <trend-analysis style="margin-top: 10px;" />

    <!-- 异常位置分析 -->
    <location-analysis style="margin-top: 10px;" />
  </app-container>
</template>