feat(安防监控): 新增安防监控管理页面及组件

添加安防监控管理功能,包括主页面布局、实时视频监控组件和顶部数据统计卡片
更新开发环境API地址配置
新增相关静态资源图片
This commit is contained in:
tcy
2025-09-19 20:29:04 +08:00
parent 7ef7e48e83
commit eb3e1326ca
8 changed files with 225 additions and 1 deletions

View File

@ -0,0 +1,19 @@
<template>
<el-row>
<el-card style="width: 100%;border-radius: 12px;">
<div style="display: flex;width: 100%;justify-content: space-between;align-items: center;">
<TitleComponent title="实时视频监控" subtitle="查看所有已完成的巡检记录,跟进巡检报告" fontLevel="2" />
<span style="color: rgba(24, 109, 245, 1);display: flex;align-items: center; cursor: pointer;">
<span>
2025/06/30 12:00
刷新数据
</span>
<el-icon>
<refresh />
</el-icon>
</span>
</div>
</el-card>
</el-row>
</template>
<script setup></script>