zhangzengfei
2022-07-20 4a800a8fc83c6bd1f86a8e847b079a51a7532c09
src/api/area.ts
@@ -11,7 +11,7 @@
export const getGB28181CameraTree = (query: any) => {
  return request({
    url: "/data/api-v/area/gb28181Tree",
    url: "/data/api-v/gb28181/tree",
    method: "get",
    params: query
  });
@@ -49,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/gb28181/treeRefresh",
    method: "post",
  });
};