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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| import request from "@/scripts/httpRequest";
|
| //进出入统计
| //ElasticSearchArg :es查询参数
| export const statisticsInAndOut = (query: any) => {
| return request({
| url: "/data/api-p/platform/elasticSearch/statisticsInAndOut",
| method: "post",
| data: query
| });
| };
|
| //实时报警任务数量比
| export const realTimeCapture = (query: any) => {
| return request({
| url: "/data/api-p/platform/elasticSearch/realTimeCapture",
| method: "post",
| data: query
| });
| };
|
| //综合统计 ----2
| export const statisticsComprehensive = (query: any) => {
| return request({
| url: "/data/api-p/platform/elasticSearch/statisticsComprehensive",
| method: "post",
| data: query
| });
| };
|
|
| //综合统计 ----1
| export const realTimeAlarmTaskRate = (query: any) => {
| return request({
| url: "/data/api-p/platform/elasticSearch/realTimeAlarmTaskRate",
| method: "post",
| data: query
| });
| };
|
|
| //实时抓拍
| export const add = (query: any) => {
| return request({
| url: "/data/api-v/platform/add",
| method: "post",
| data: query
| });
| };
|
|