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.
50 lines
1.1 KiB
50 lines
1.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
|
|
})
|
|
}
|
|
|
|
|