21 lines
623 B
JavaScript
21 lines
623 B
JavaScript
import http from '../utils/http'
|
|
|
|
// 业绩看板
|
|
export const apiResultChart = data => {
|
|
return http({ url: '/lz_management/result/chart', method: 'get', params: data })
|
|
}
|
|
|
|
// 绩效列表
|
|
export const apiResultReport = data => {
|
|
return http({ url: '/lz_management/result/report', method: 'post', params: data })
|
|
}
|
|
|
|
// 业绩列分布
|
|
export const apiResultDistribution = data => {
|
|
return http({ url: '/lz_management/result/distribution', method: 'post', params: data })
|
|
}
|
|
|
|
export const apiDepartmentSelfList = data => {
|
|
return http({ url: '/lz_management/result/departmentTreeByStaffId', method: 'get', data })
|
|
}
|