Merge branch 'main' of http://192.168.0.251:3000/localnet/localhost-front
This commit is contained in:
commit
402c75320c
@ -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',
|
||||
|
||||
@ -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();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user