提交
This commit is contained in:
27
packageRc/api/needs/person.js
Normal file
27
packageRc/api/needs/person.js
Normal file
@@ -0,0 +1,27 @@
|
||||
// 人员接口
|
||||
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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user