jichoi / lms_front star
woals 08-23
240823 권민수 로그인된 학생의 오답노트 불러오기
@2bb366a45e823c9e135a6a5aaea019947a0ccc9a
client/views/pages/main/PreviewNote.vue
--- client/views/pages/main/PreviewNote.vue
+++ client/views/pages/main/PreviewNote.vue
@@ -63,6 +63,11 @@
         }
     },
     methods: {
+        pageSetting() {
+            this.currentStdId = this.$store.getters.getUserInfo.userId;
+
+            this.fetchWrongAnswerNotes();
+        },
 
         // 오답노트 상세 보기 버튼 클릭
         viewDetail(prblm) {
@@ -138,8 +143,8 @@
     },
     mounted() {
         console.log('PreviewNote mounted');
+        this.pageSetting();
         this.fetchUnitDetail();
-        this.fetchWrongAnswerNotes();
     }
 }
 </script>
Add a comment
List