Blame view

绿纤uni-app/apis/modules/performance.js 479 Bytes
29608708   李宇   增加unia-app和html
1
2
3
4
5
6
7
  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);
a856ffdc   李宇   ```
8
9
10
11
  	},
  	// 获取科技部员工业绩统计
  	GetTechTeacherStatistics(data) {
  		return request.post(`${config.getApiBaseUrl()}/api/Extend/lqstatistics/GetTechTeacherStatistics`, data);
29608708   李宇   增加unia-app和html
12
13
  	}
  }