feat(视频监控): 新增摄像头预置位管理和视频监控功能

新增摄像头预置位管理功能,包括添加、修改、删除和调用预置位
实现视频监控页面,支持扩展视图和普通视图切换
添加获取摄像头列表接口,优化视频播放器初始化逻辑
完善分页功能,根据视图类型动态调整请求数量
This commit is contained in:
tcy
2025-09-23 20:37:04 +08:00
parent f79eecd247
commit 4163b11d3d
6 changed files with 959 additions and 71 deletions

View File

@ -6,3 +6,11 @@ export function getToken() {
method: 'get',
})
}
// 获取摄像头列表
export function getMonitoringList(data) {
return request({
url: '/ops/monitoriing/getMonitoringList',
method: 'post',
data
})
}