performance.js 479 Bytes
import request from '@/service/request.js'
import config from '@/common/config.js'

export default {
	// 获取员工业绩统计
	getEmployeePerformanceStatistics(data) {
		return request.post(`${config.getApiBaseUrl()}/api/Extend/lqstatistics/get-employee-performance-statistics`, data);
	},
	// 获取科技部员工业绩统计
	GetTechTeacherStatistics(data) {
		return request.post(`${config.getApiBaseUrl()}/api/Extend/lqstatistics/GetTechTeacherStatistics`, data);
	}
}