From 9ba8174d333e682c427f4bfd177108bbe6895bb4 Mon Sep 17 00:00:00 2001
From: heyujie <516346543@qq.com>
Date: 星期二, 22 六月 2021 16:24:52 +0800
Subject: [PATCH] 筛选司机室视频
---
src/api/area.ts | 25 ++++++++++++++++++++++++-
1 files changed, 24 insertions(+), 1 deletions(-)
diff --git a/src/api/area.ts b/src/api/area.ts
index 52de7a5..5e580d4 100644
--- a/src/api/area.ts
+++ b/src/api/area.ts
@@ -17,6 +17,14 @@
});
};
+export const getClusterTree = (query: any) => {
+ return request({
+ url: "/data/api-v/camera/nodeCamera",
+ method: "get",
+ params: query
+ });
+};
+
export const addAreaTreeData = (query: any) => {
return request({
url: "/data/api-v/area/add",
@@ -41,9 +49,24 @@
});
};
+export const getCameraBaseImage = (query: any) => {
+ return request({
+ url: "/data/api-v/gb28181/camera/capture",
+ method: "get",
+ params: query
+ });
+};
+
+export const getGb28181Pool = () => {
+ return request({
+ url: "/data/api-v/gb28181/treeSelected",
+ method: "get"
+ });
+};
+
export const refreshGB28181Tree = () => {
return request({
- url: "/data/api-v/area/gb28181TreeRefresh",
+ url: "/data/api-v/area/gb28181RefreshTree",
method: "post",
});
};
--
Gitblit v1.8.0