mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-24 07:52:53 +08:00
[new] 完成 人发系统 - 人才库 - 新增、修改、列表
This commit is contained in:
@@ -2,13 +2,37 @@ import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 人才库列表查询接口
|
||||
export function getAgentPersonnelList(data) {
|
||||
export function getAgentPersonnelList(data = {}) {
|
||||
return request({
|
||||
url: getUrl('/agent/personnel/queryList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 人才库 - 新增人才
|
||||
export function saveAgentPersonnel(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/personnel/saveOrUpdate', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 人才库 - 查询详情
|
||||
export function getAgentPersonnelDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/personnel/queryDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 人才库 - 查询人才库列表 - 导航页
|
||||
export function getAgentPersonnelListFirst(data = {}) {
|
||||
return request({
|
||||
url: getUrl('/agent/personnel/queryListFirst', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 活动量统计周报
|
||||
export function queryWeekly(data) {
|
||||
|
||||
Reference in New Issue
Block a user