Newer
Older
sensorHubPlusFront / src / views / data / statistics / index.vue
liyaguang 8 days ago 554 bytes 统计分析页面搭建
<!--
  Description: 统计分析页面
  Author: 李亚光
  Date: 2025-05-28
 -->
<script name="StatisticsAnalysis" lang="ts" setup>
import top from './components/header.vue'
import middle from './components/middle.vue';
import bottom from './components/bottom.vue'
</script>

<template>
  <app-container>
    <!-- 顶部  --设备统计和报警统计 -->
     <top style="border-radius: 6px;" />
     <middle style="border-radius: 6px; margin-top: 10px;" />
     <bottom style="border-radius: 6px; margin-top: 10px;" />
  </app-container>
</template>