fuliqi
2025-01-15 79f0dbe2bc5588c617ddfd82ac027977c764f5fe
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
77
78
79
80
81
82
83
84
85
86
87
import request from '@/utils/request'
 
// 运维监控报表
export function video(data) {
  return request({
    url: '/home/video',
    method: 'get',
    params: data
  })
}
 
// 运维监控报表
export function car(data) {
  return request({
    url: '/home/car',
    method: 'get',
    params: data
  })
}
 
// 运维监控报表
export function face(data) {
  return request({
    url: '/home/face',
    method: 'get',
    params: data
  })
}
 
// 运维公司下拉
export function ywUnitList() {
  return request({
    url: '/home/ywUnitList',
    method: 'get'
  })
}
 
// 运维监控报表
export function monitor(data) {
  return request({
    url: '/home/monitor',
    method: 'get',
    params: data
  })
}
 
// 运维工单报表
export function workOrder(data) {
  return request({
    url: '/home/workOrder',
    method: 'get',
    params: data
  })
}
 
// 运维到期预警
export function ywPoint() {
  return request({
    url: '/home/ywPoint',
    method: 'get'
  })
}
 
// 运维单位超期责任数排名
export function ywUnitCount() {
  return request({
    url: '/home/ywUnitCount',
    method: 'get'
  })
}
 
// 考核预警
export function checkScore() {
  return request({
    url: '/home/checkScore',
    method: 'get'
  })
}
 
// 核算报表
export function calculate(category) {
  return request({
    url: '/home/calculate',
    method: 'get',
    params: { category }
  })
}