You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
import request from '@/utils/requestFile'
|
|
//PC岗位考核相关考核API
|
|
|
|
// 岗位定量考核目标列表
|
|
export function postRationTargetConfigList(data) {
|
|
return request({
|
|
url: '/postpc/post_config_list_news',
|
|
method: 'post',
|
|
data
|
|
})
|
|
};
|
|
// 岗位定量考核指标列表
|
|
export function postRationTargetList(data) {
|
|
return request({
|
|
url: '/postpc/getpostabouttarget',
|
|
method: 'post',
|
|
data
|
|
})
|
|
};
|
|
// 提交岗位考核定量指标目标值设定
|
|
export function postRationTargetCont(data) {
|
|
return request({
|
|
url: '/postpc/set_evaluation_objectives',
|
|
method: 'post',
|
|
data
|
|
})
|
|
};
|
|
// 查看岗位考核指标目标值
|
|
export function getRationTargetCont(data) {
|
|
return request({
|
|
url: '/postpc/lookposttiveconfig',
|
|
method: 'post',
|
|
data
|
|
})
|
|
};
|
|
// 删除岗位考核指标目标值
|
|
export function delRationTargetCont(data) {
|
|
return request({
|
|
url: '/postpc/new_del_quantitative_config',
|
|
method: 'post',
|
|
data
|
|
})
|
|
};
|
|
// 编辑岗位考核指标目标值
|
|
export function editRationTargetCont(data) {
|
|
return request({
|
|
url: '/postpc/eite_quantitative_config',
|
|
method: 'post',
|
|
data
|
|
})
|
|
};
|