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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
| import request from '@/axios'
|
| // 巡检任务统计分析
| export const gettaskStatictApi = data => {
| return request({
| url: `/drone-device-core/wayline/waylineJobInfo/jobStatusLine`,
| method: 'post',
| data,
| })
| }
|
| // 事件处置分析
| export const getdisposeApi = data => {
| return request({
| url: `/drone-device-core/jobEvent/eventStatusLine`,
| method: 'post',
| data,
| })
| }
| // 事件处置效率统计
| export const efficiencyApi = data => {
| return request({
| url: `/drone-device-core/jobEvent/eventUsedTimeLine`,
| method: 'post',
| data,
| })
| }
| // 事件分析
| export const eventPproportionApi = data => {
| return request({
| url: `/drone-device-core/jobEvent/eventAiTypeRate`,
| method: 'post',
| data,
| })
| }
| // 事件分析-机巢统计
| export const nestEventApi = data => {
| return request({
| url: `/drone-device-core/jobEvent/eventAiTypeByDeviceSn`,
| method: 'post',
| data,
| })
| }
| // 机巢接口
| export const selectNestApi = data => {
| return request({
| url: `/drone-device-core/manage/api/v1/devices/getDeviceYear`,
| method: 'post',
| data,
| })
| }
| // 统计接口
| export const tongjiNestApi = data => {
| return request({
| url: `/drone-device-core/manage/api/v1/devices/getAllDeviceStatistics`,
| method: 'post',
| data,
| })
| }
|
| // 飞行成果概览
| export const flightAchievementsApi = data => {
| return request({
| url: `/blade-resource/attach/attachTypeStatistics`,
| method: 'post',
| data,
| })
| }
| // 成本对比统计
| export const costDataApi = data => {
| return request({
| url: `/drone-device-core/manage/api/v1/devices/costComparisonStatistics`,
| method: 'post',
| data,
| })
| }
|
|