保安监管系统-验收版本
zhengpz
2021-12-07 dbb160f7ce6c334ee561e551930ec72b5f5db899
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
 
import request from '@/router/axios';
 
export const getLisperexamScore = (current, size, params, userId) => {
    return request({
        url: '/api/examScore/page',
        method: 'get',
        params: {
            ...params,
            current,
            size,
            userId
        }
    })
}
export const getLispereexamPayment = (current, size, params) => {
    return request({
        url: '/api/examPayment/page',
        method: 'get',
        params: {
            ...params,
            current,
            size
        }
    })
}
 
export const update = (row) => {
  return request({
    url: '/api/examPayment/submit',
    method: 'post',
    data: row
  })
}
 
 
export const getLispereregistrationTrainingQuery = (current, size, params) => {
    return request({
        url: '/api/trainingRegistration/page',
        method: 'get',
        params: {
            ...params,
            current,
            size,
        }
    })
}