From b26cf05019d02d463e887e70f23c3705259e4a1b Mon Sep 17 00:00:00 2001 From: khj0414 Date: Tue, 18 Mar 2025 10:50:00 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=EB=82=B4=EA=B0=80=ED=95=9C=ED=88=AC?= =?UTF-8?q?=ED=91=9C=EC=88=98=EC=A0=95=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/voteboard/voteBoardList.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/voteboard/voteBoardList.vue b/src/views/voteboard/voteBoardList.vue index aa077ae..5253880 100644 --- a/src/views/voteboard/voteBoardList.vue +++ b/src/views/voteboard/voteBoardList.vue @@ -22,7 +22,7 @@ -
투표가 없습니다.
+
투표가 없습니다.
{ }; const changeCheck = () =>{ + currentPage.value = 1; getvoteList(); } //투표목록 From b393a29026c6452d132e082b2e1b7d527d67390e Mon Sep 17 00:00:00 2001 From: khj0414 Date: Tue, 18 Mar 2025 10:56:12 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=EC=88=98=EC=A0=95=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/voteboard/voteBoardList.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/voteboard/voteBoardList.vue b/src/views/voteboard/voteBoardList.vue index 5253880..550c3f8 100644 --- a/src/views/voteboard/voteBoardList.vue +++ b/src/views/voteboard/voteBoardList.vue @@ -101,6 +101,7 @@ const getvoteList = () => { }; const selectHandler = () =>{ + currentPage.value = 1; voteset.value = category.value; getvoteList(); } From 72570e11a219258e518347b3d2da230683add767 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 18 Mar 2025 10:57:13 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=EC=95=88?= =?UTF-8?q?=ED=95=98=EA=B3=A0=20=EA=B2=BD=EB=A1=9C=EB=A1=9C=20=EB=93=A4?= =?UTF-8?q?=EC=96=B4=EA=B0=88=EB=95=8C=20=EB=AA=A8=EB=93=A0=20=EB=A9=94?= =?UTF-8?q?=EB=89=B4=20=EB=A7=89=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/router/index.js b/src/router/index.js index e5a575d..0db5705 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -13,6 +13,7 @@ const routes = [ { path: '/board', component: () => import('@v/board/TheBoard.vue'), + meta: { requiresAuth: true }, children: [ { path: '', @@ -38,6 +39,7 @@ const routes = [ { path: '/wordDict', component: () => import('@v/wordDict/wordDict.vue'), + meta: { requiresAuth: true } }, { path: '/login', @@ -60,10 +62,12 @@ const routes = [ { path: '/vacation', component: () => import('@v/vacation/VacationManagement.vue'), + meta: { requiresAuth: true } }, { path: '/voteboard', component: () => import('@v/voteboard/TheVoteBoard.vue'), + meta: { requiresAuth: true }, children: [ { path: '', @@ -79,10 +83,12 @@ const routes = [ { path: '/projectlist', component: () => import('@v/projectlist/TheProjectList.vue'), + meta: { requiresAuth: true } }, { path: '/commuters', component: () => import('@v/commuters/TheCommuters.vue'), + meta: { requiresAuth: true } }, { path: '/authorization',