bonus.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import http from '@/utils/request'
  2. // 业绩分配 列表查询
  3. export function getAllocationPage (data) {
  4. return http.post('/employee/performance/page', data)
  5. }
  6. // 业绩分配 绩效分配
  7. export function saveAllocationGrant (data) {
  8. return http.post('/employee/performance/grant', data)
  9. }
  10. // 业绩分配 员工类型字典
  11. export function getAllocationEmployeeCategory (data) {
  12. return http.post('/employee/performance/category/dict', data)
  13. }
  14. // 业绩分配 检查审核状态
  15. export function checkAllocationSubmitStatus (data) {
  16. return http.post('/employee/performance/confirmation/check/submit', data)
  17. }
  18. // 业绩分配 绩效分配统计
  19. export function getAllocationStatistics (data) {
  20. return http.post('/employee/performance/grant/statistics', data)
  21. }
  22. // 业绩分配 绩效分配统计
  23. export function saveAllocation (data) {
  24. return http.post('/employee/performance/submit/grant', data)
  25. }
  26. // 奖金审核 列表
  27. export function getBonusApprovePage (data) {
  28. return http.post('/employee/performance/confirmation/page', data)
  29. }
  30. // 奖金审核 审核
  31. export function saveBonusApproveConfirmation (data) {
  32. return http.post('/employee/performance/confirmation/approve', data)
  33. }