zhouwx
2 天以前 4fe6c5ac4bc2b7fa9c9c71bb52d9df3e8b13bd7c
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
import request from '@/utils/request'
 
 
export function getPersonPage(params) {
    return request({
        url: '/internal/audit/person/list',
        method: 'get',
        params: params
    })
}
 
 
export function addPerson(data) {
    return request({
        url: '/internal/audit/person/insert',
        method: 'post',
        data: data
    })
}
 
export function editPerson(params) {
    return request({
        url: `/internal/audit/person/update`,
        method: 'post',
        data: params
    })
}
 
export function delPerson(data) {
    return request({
        url: `/internal/audit/person/deleted?personId=${data}`,
        method: 'get'
    })
}