| 
					
				 | 
			
			
				@@ -168,6 +168,18 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               text: item.name 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             })) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         ]; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        const studentSubjectIds = 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          baseState.platformType === 'TEACHER' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            ? baseState.user.data.subjectId 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            : baseState.user.data.student.subjectIdList; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        const id = studentSubjectIds ? studentSubjectIds.split(',')[0] : 0; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        appState.subjectOptions.forEach((subject: any) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          if (Number(id) === subject.value) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            appState.subjectId = Number(id); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } catch (error) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 |