common.js
1.11 KB
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
import request from '@/utils/request'
export function getBasicInfo(params) {
return request({
url: '/dp/basicInfo',
method: 'get',
params: params
})
}
// 满意度
export function getDegree(params) {
return request({
url: '/dp/degree',
method: 'get',
params: params
})
}
// 查档接待情况?type=month,quarter,year
export function getJieDai(params) {
return request({
url: '/dp/jieDai',
method: 'get',
params: params
})
}
// 档案检索情况?type=month,quarter,year
export function getJianSuo(params) {
return request({
url: '/dp/jianSuo',
method: 'get',
params: params
})
}
// 档案借阅总览?type=month,quarter,year
export function getJieYue(params) {
return request({
url: '/dp/jieYue',
method: 'get',
params: params
})
}
// 档案接收总览?type=month,quarter,year
export function getJieShou(params) {
return request({
url: '/dp/jieShou',
method: 'get',
params: params
})
}
export function vistorRegister(data) {
return request({
url: `/pcSimpleRegister`,
method: 'post',
data: data
})
}