|  | @@ -22,14 +22,14 @@ import {
 | 
	
		
			
				|  |  |  import { vaildUrl } from '@/utils/urlUtils';
 | 
	
		
			
				|  |  |  import CDatePicker from '/src/components/CDatePicker';
 | 
	
		
			
				|  |  |  import { useUserStore } from '/src/store/modules/users';
 | 
	
		
			
				|  |  | +import TheEmpty from '/src/components/TheEmpty';
 | 
	
		
			
				|  |  |  export default defineComponent({
 | 
	
		
			
				|  |  |    name: 'student-practiceData',
 | 
	
		
			
				|  |  |    props: {
 | 
	
		
			
				|  |  |      studentId: {
 | 
	
		
			
				|  |  |        type: String,
 | 
	
		
			
				|  |  |        default: ''
 | 
	
		
			
				|  |  | -    },
 | 
	
		
			
				|  |  | -    classGroupId: {
 | 
	
		
			
				|  |  | +    }, classGroupId: {
 | 
	
		
			
				|  |  |        type: String,
 | 
	
		
			
				|  |  |        default: ''
 | 
	
		
			
				|  |  |      }
 | 
	
	
		
			
				|  | @@ -148,8 +148,8 @@ export default defineComponent({
 | 
	
		
			
				|  |  |        const res = await getPracticeRecordList({
 | 
	
		
			
				|  |  |          userId: props.studentId,
 | 
	
		
			
				|  |  |          ...state.pagination,
 | 
	
		
			
				|  |  | -        classGroupId: props.classGroupId,
 | 
	
		
			
				|  |  | -        feature: 'EVALUATION',
 | 
	
		
			
				|  |  | +        classGroupId:props.classGroupId,
 | 
	
		
			
				|  |  | +        feature: "EVALUATION",
 | 
	
		
			
				|  |  |          ...getTimes(timer.value, ['startTime', 'endTime'], 'YYYY-MM-DD')
 | 
	
		
			
				|  |  |        });
 | 
	
		
			
				|  |  |        state.tableList = res.data.rows;
 |