| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import request from '@/utils/request'
- // 查询绩效核算列表
- export function listCalculate(query) {
- return request({
- url: '/performance/calculate/list',
- method: 'get',
- params: query
- })
- }
- // 查询部门绩效核算详细
- export function getCalculate(deptId, month) {
- return request({
- url: '/performance/calculate/' + deptId + '/' + month,
- method: 'get'
- })
- }
- // 查询绩效汇总
- export function getCalculateSummary(query) {
- return request({
- url: '/performance/calculate/summary',
- method: 'get',
- params: query
- })
- }
- // 修改绩效核算比例
- export function updateCalculateRatio(ratio) {
- return request({
- url: '/performance/calculate/ratio',
- method: 'put',
- data: { ratio }
- })
- }
- // 导出绩效数据
- export function exportCalculate(query) {
- return request({
- url: '/performance/calculate/export',
- method: 'get',
- params: query
- })
- }
- // 查询绩效统计图表数据
- export function getCalculateChart(query) {
- return request({
- url: '/performance/calculate/chart',
- method: 'get',
- params: query
- })
- }
|