1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import http from '@/utils/request'
- // 业绩分配 列表查询
- export function getAllocationPage (data) {
- return http.post('/employee/performance/page', data)
- }
- // 业绩分配 绩效分配
- export function saveAllocationGrant (data) {
- return http.post('/employee/performance/grant', data)
- }
- // 业绩分配 员工类型字典
- export function getAllocationEmployeeCategory (data) {
- return http.post('/employee/performance/category/dict', data)
- }
- // 业绩分配 检查审核状态
- export function checkAllocationSubmitStatus (data) {
- return http.post('/employee/performance/confirmation/check/submit', data)
- }
- // 业绩分配 绩效分配统计
- export function getAllocationStatistics (data) {
- return http.post('/employee/performance/grant/statistics', data)
- }
- // 业绩分配 绩效分配统计
- export function saveAllocation (data) {
- return http.post('/employee/performance/submit/grant', data)
- }
- // 奖金审核 列表
- export function getBonusApprovePage (data) {
- return http.post('/employee/performance/confirmation/page', data)
- }
- // 奖金审核 审核
- export function saveBonusApproveConfirmation (data) {
- return http.post('/employee/performance/confirmation/approve', data)
- }
|