28 lines
504 B
JavaScript
28 lines
504 B
JavaScript
|
|
// 人员接口
|
||
|
|
import { post, get } from '../../utils/request.js'
|
||
|
|
export function getPersonBase(params) {
|
||
|
|
return get({
|
||
|
|
url: 'personnel/personBaseInfo/list',
|
||
|
|
|
||
|
|
params
|
||
|
|
})
|
||
|
|
}
|
||
|
|
export function getPersonList(params) {
|
||
|
|
return get({
|
||
|
|
url: 'personnel/personBaseInfo/list',
|
||
|
|
method: 'get',
|
||
|
|
params
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
// 新增角色
|
||
|
|
export function addInvestigate(data) {
|
||
|
|
return post({
|
||
|
|
// url: '/process/processInterview',
|
||
|
|
url: '/timelime/timelime',
|
||
|
|
method: 'post',
|
||
|
|
data: data
|
||
|
|
})
|
||
|
|
}
|