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
| import resquest from '@/utils/request'
|
| export function page(params) {
| return resquest({
| url: '/performanceShift/page',
| method: 'get',
| params: params
| })
| }
|
|
| export function pageYear(params) {
| return resquest({
| url: '/performanceShift/pageYear',
| method: 'get',
| params: params
| })
| }
|
| export function add(data) {
| return resquest({
| url: '/performanceShift/add',
| method: 'post',
| data: data
| })
| }
|
| export function exportExcel(params) {
| return resquest({
| url: '/performanceShift/export' + params,
| method: 'get',
| responseType: 'blob'
| })
| }
|
| export function update(data) {
| return resquest({
| url: '/performanceShift/update',
| method: 'put',
| data: data
| })
| }
|
| export function getUserList() {
| return resquest({
| url: '/performanceShift/getUserList',
| method: 'get'
| })
| }
|
|
|
| export function list(params) {
| return resquest({
| url: '/shiftTime/list',
| method: 'get',
| params: params
| })
| }
|
| export function shiftAdd(data) {
| return resquest({
| url: '/shiftTime/add',
| method: 'post',
| data: data
| })
| }
|
| export function remove(id) {
| return resquest({
| url: '/shiftTime/remove',
| method: 'delete',
| params: id
| })
| }
|
| export function obtainItemParameterList(params) {
| return resquest({
| url: '/laboratoryScope/obtainItemParameterList',
| method: 'get',
| params: params
| })
| }
|
|