
--- client/views/layout/Menu.vue
+++ client/views/layout/Menu.vue
... | ... | @@ -36,8 +36,9 @@ |
36 | 36 |
<ul class="main-menu main-menu-1"> |
37 | 37 |
<li v-for="menuItem in menuItems" :key="menuItem.text" :class="{ 'active': menuItem.isHovered }" |
38 | 38 |
@mouseover="menuItem.isHovered = true" @mouseout="menuItem.isHovered = false"> |
39 |
- <router-link v-if="shouldRenderMenuItem(menuItem)" :to="menuItem.link">{{ menuItem.text |
|
39 |
+ <router-link v-if="shouldRenderMenuItem(menuItem) && menuItem.text !== '교육과정 표준체계'" :to="menuItem.link">{{ menuItem.text |
|
40 | 40 |
}}</router-link> |
41 |
+ <a v-else-if="menuItem.text === '교육과정 표준체계'" :href="menuItem.link" target="_blank">{{ menuItem.text }}</a> |
|
41 | 42 |
<ul class="sub-menu sub-menu-1"> |
42 | 43 |
<li v-for="subMenuItem in menuItem.subMenu" :key="subMenuItem.text" @click="navClose(menuItem)"> |
43 | 44 |
<router-link v-if="shouldRenderSubMenuItem(subMenuItem)" :to="subMenuItem.link">{{ subMenuItem.text }}</router-link> |
... | ... | @@ -95,6 +96,10 @@ |
95 | 96 |
] |
96 | 97 |
}, |
97 | 98 |
{ |
99 |
+ text:"교육과정 표준체계", |
|
100 |
+ link: "http://211.253.31.234/", |
|
101 |
+ }, |
|
102 |
+ { |
|
98 | 103 |
text: "마이페이지", |
99 | 104 |
link: "/Info.page", |
100 | 105 |
isHovered: false, |
--- client/views/pages/AppRouter.js
+++ client/views/pages/AppRouter.js
... | ... | @@ -78,12 +78,12 @@ |
78 | 78 |
{ path: "/", name: "Main", component: Main, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]}}, |
79 | 79 |
{ path: "/Data.page", name: "Data", component: Data, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
80 | 80 |
{ path: "/Matching.page", name: "Matching", component: Matching, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
81 |
- { path: "/Login.page", name: "Login", component: Login, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
|
81 |
+ { path: "/Login.page", name: "Login", component: Login, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]}}, |
|
82 | 82 |
{ path: "/Join.page", name: "Join", component: Join, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
83 | 83 |
{ path: "/Joinsub.page", name: "Joinsub", component: Joinsub, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
84 | 84 |
{ path: "/Introduction.page", name: "Introduction", component: Introduction, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
85 | 85 |
{ path: "/Technology.page", name: "Technology", component: Technology, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
86 |
- { path: "/Notice.page", name: "Notice", component: Notice, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]} }, |
|
86 |
+ { path: "/Notice.page", name: "Notice", component: Notice, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]}}, |
|
87 | 87 |
{ path: "/Info.page", name: "Info", component: Info,meta:{authorization:["준회원","일반 정회원","기업 정회원"]} }, |
88 | 88 |
{ path: "/Guide.page", name: "Guide", component: Guide, meta:{authorization:["비회원","준회원","일반 정회원","기업 정회원"]}}, |
89 | 89 |
{ path: "/Infosub.page", name: "Infosub", component: Infosub,meta:{authorization:["일반 정회원","기업 정회원"]} }, |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?