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.
146 lines
3.1 KiB
146 lines
3.1 KiB
import request from '@/utils/requestFile'
|
|
// 获取岗位方案内容列表
|
|
export function get_post_scheme(data) {
|
|
return request({
|
|
url: '/postpc/get_post_scheme',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 获取复制岗位考核方案
|
|
export function get_copy_sheme_infor(data) {
|
|
return request({
|
|
url: '/postpc/get_copy_sheme_infor',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 引用指标部门指标
|
|
export function quote_department_target(data) {
|
|
return request({
|
|
url: '/postpc/quote_department_target',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 提交岗位考核方案
|
|
export function submit_post_scheme(data) {
|
|
return request({
|
|
url: '/postpc/submit_post_scheme',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 获取岗位相关指标
|
|
export function getpostabouttarget(data) {
|
|
return request({
|
|
url: '/postpc/getpostabouttarget',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 添加岗位指标
|
|
export function add_post_target(data) {
|
|
return request({
|
|
url: '/postpc/add_post_target',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 编辑岗位指标
|
|
export function dit_post_target(data) {
|
|
return request({
|
|
url: '/postpc/dit_post_target',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 获取岗位指标关联部门相关岗位及提报人
|
|
export function get_target_about_depart_to_post_man(data) {
|
|
return request({
|
|
url: '/postpc/get_target_about_depart_to_post_man',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 根据指标添加岗位细则
|
|
export function add_post_target_cont(data) {
|
|
return request({
|
|
url: '/postpc/add_post_target_cont',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 根据指标获取岗位定性指标细则列表
|
|
export function posttargetsunlist(data) {
|
|
return request({
|
|
url: '/postpc/posttargetsunlist',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 获取指标细则内容
|
|
export function getdetailscont(data) {
|
|
return request({
|
|
url: '/postpc/getdetailscont',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 编辑定性指标细则内容
|
|
export function editdeatilscont(data) {
|
|
return request({
|
|
url: '/postpc/editdeatilscont',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 编辑岗位子栏目内容
|
|
export function edit_son_target_cont(data) {
|
|
return request({
|
|
url: '/postpc/edit_son_target_cont',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 岗位定量考核目标列表
|
|
export function post_config_list(data) {
|
|
return request({
|
|
url: '/postpc/post_config_list',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 提交定量考核数据
|
|
export function set_evaluation_objectives(data) {
|
|
return request({
|
|
url: '/postpc/set_evaluation_objectives',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 修改考核目标设置
|
|
export function eite_quantitative_config(data) {
|
|
return request({
|
|
url: '/postpc/eite_quantitative_config',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 删除考核目标设置
|
|
export function del_quantitative_config(data) {
|
|
return request({
|
|
url: '/postpc/del_quantitative_config',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 查看定量考核目标设定
|
|
export function lookposttiveconfig(data) {
|
|
return request({
|
|
url: '/postpc/lookposttiveconfig',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|