voffice.js
896 Bytes
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
import request from '@/utils/request'
// 场地信息
export function getVOfficesInfo(query) {
return request({
url: '/resource/office/showOffice/'+query,
method: 'get'
})
}
//汇总统计信息
export function getCountInfo(data) {
return request({
url: '/view/office/keyInfo',
method: 'get',
params:data
})
}
// 办公室数量
export function getfficeNum() {
return request({
url: '/view/office/officeCnt',
method: 'get'
})
}
//办公室人数
export function getOfficePerson() {
return request({
url: '/view/office/personCnt',
method: 'get'
})
}
//办公室到岗情况
export function getOfficeOnduty() {
return request({
url: '/view/office/officeCheckOn',
method: 'get'
})
}
//运维商到岗情况
export function getCompanyOnduty() {
return request({
url: '/view/office/companyCheckOn',
method: 'get'
})
}