hanbaoshan
2020-12-03 c99cad106ef5be9f818e45d385dfdcec29ce19e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import request from '@/scripts/httpRequest'
 
export const getGB28181Config = () => {
  return request({
    url: "/data/api-v/sysset/gb28181ConfigShow",
    method: "get"
  });
};
 
 
export const saveGB28181Config = (query: any) => {
  return request({
    url: "/data/api-v/sysset/gb28181ConfigEdit",
    method: "post",
    data: query
  });
};
 
export const getGb28181AreaList = (query: any) => {
  return request({
    url: "/data/api-v/gb28181/findAreaByParentId",
    method: "get",
    params: query
  });
};
 
export const newGb28181ID = (query: any) => {
  return request({
    url: "/data/api-v/gb28181/newGbId",
    method: "get",
    params: query
  });
};