Files
ndm-web-platform/src/pages/vimp/components/icon/hemi-ptz-camera.vue
T
yangsy 8fae86d6ff feat(vimp-resource): 优化资源面板,添加设备搜索与图标展示
- 新增bullet-camera、hemi-ptz-camera、ptz-camera三个自定义svg摄像头图标
- 替换告警和摄像头列表的文字前缀为对应图标展示
- 重构资源面板状态管理,简化搜索关键词的存储逻辑
- 为摄像头和告警树添加本地搜索过滤功能,搜索时自动展开所有节点
- 重构资源面板UI布局,添加折叠动画,优化搜索框显示逻辑与侧边栏样式
2026-05-29 00:11:43 +08:00

10 lines
415 B
Vue

<template>
<svg class="icon" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="none" stroke="currentColor" stroke-width="4">
<path d="M8 10v14c0 8.837 7.163 16 16 16s16-7.163 16-16V10" />
<path stroke-linecap="round" stroke-linejoin="round" d="M4 10h40" />
<path stroke-linejoin="round" d="M24 30a6 6 0 1 0 0-12a6 6 0 0 0 0 12Z" />
</g>
</svg>
</template>