龚焕茏
2024-08-15 ddaa870224aa1c12b05ff2ac242c2283d3e54241
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
import request from '@/utils/request'
 
// 运维公司下拉
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 }
  })
}