This commit is contained in:
yoon 2025-03-18 11:03:09 +09:00
commit 402c75320c
2 changed files with 9 additions and 1 deletions

View File

@ -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',

View File

@ -22,7 +22,7 @@
</div>
<!-- 투표리스트 -->
<div v-if="voteListCardData.length == 0 " >투표가 없습니다.</div>
<div v-if="voteListCardData.length == 0 " class="text-center">투표가 없습니다.</div>
<vote-list
:data="voteListCardData"
@addContents="addContents"
@ -81,6 +81,7 @@ const voteWrite = () => {
};
const changeCheck = () =>{
currentPage.value = 1;
getvoteList();
}
//
@ -100,6 +101,7 @@ const getvoteList = () => {
};
const selectHandler = () =>{
currentPage.value = 1;
voteset.value = category.value;
getvoteList();
}