yjryu / KERIS star
류윤주 류윤주 2023-11-30
231130 이세현 자료집 상단버튼 토글
@e6c7a146b50579cb73696d38f0aa81e5d2204cc5
client/views/pages/user/Data/Data.vue
--- client/views/pages/user/Data/Data.vue
+++ client/views/pages/user/Data/Data.vue
@@ -188,25 +188,30 @@
         },
 
         clickButton(index) {
+            this.buttons[index].clicked = !this.buttons[index].clicked;
             this.buttons.forEach((button, idx) => {
                 if (idx === index) {
-                    button.clicked = true;
-                    this.postListSearch.ctgry_nm = button.value;
-                    this.postSelectList();
+                    if (button.clicked) {
+                        this.postListSearch.ctgry_nm = button.value;
+                        this.postSelectList();
+                    } else {  
+                        this.postListSearch.ctgry_nm = null;
+                        this.postSelectList();
+                    }
                 } else {
                     button.clicked = false;
                 }
-
             });
+
             switch (index) {
                 case 0:
-                    this.categoryName = '정책자료';
+                    this.categoryName = this.buttons[index].clicked ? '정책자료' : '전체';
                     break;
                 case 1:
-                    this.categoryName = '연구자료';
+                    this.categoryName = this.buttons[index].clicked ? '연구자료' : '전체';
                     break;
                 default:
-                    this.categoryName = '가이드라인';
+                    this.categoryName = this.buttons[index].clicked ? '가이드라인' : '전체';
                     break;
             }
             this.scrollToBottom();
Add a comment
List