

231106김하영
@322ea11d4ed312765a12ef4c5c8257da7a643662
--- client/views/layout/Header.vue
+++ client/views/layout/Header.vue
... | ... | @@ -1,7 +1,7 @@ |
1 | 1 |
<template> |
2 | 2 |
<div class="header"> |
3 | 3 |
<div class="w1400"> |
4 |
- <ul class="flex-end "> |
|
4 |
+ <!-- <ul class="flex-end "> |
|
5 | 5 |
<li class="name" v-if="store.state.loginUser != null"> |
6 | 6 |
<p v-if="store.state.loginUser.user_auth === 'company'">{{ store.state.loginUser.company_nm}} <span>님</span></p> |
7 | 7 |
<p v-else>{{ store.state.loginUser.user_id}} <span>님</span></p> |
... | ... | @@ -17,7 +17,7 @@ |
17 | 17 |
<router-link to="/Join.page"> <i class="fa-solid fa-user-plus fa-lg" |
18 | 18 |
style="color: #ffffff;"></i> 회원가입</router-link> |
19 | 19 |
</li> |
20 |
- </ul> |
|
20 |
+ </ul> --> |
|
21 | 21 |
<Menu class="menu" :isActive="isActive"></Menu> |
22 | 22 |
</div> |
23 | 23 |
</div> |
... | ... | @@ -38,24 +38,24 @@ |
38 | 38 |
logout: function () { |
39 | 39 |
if (confirm("로그아웃 하시겠습니까?") == false) { |
40 | 40 |
return; |
41 |
- } |
|
41 |
+ } |
|
42 | 42 |
let vm = this; |
43 | 43 |
axios({ |
44 | 44 |
url: "/user/logout.json", |
45 | 45 |
method: "post", |
46 | 46 |
headers: { |
47 |
- "Content-Type": "application/json; charset=UTF-8", |
|
47 |
+ "Content-Type": "application/json; charset=UTF-8", |
|
48 | 48 |
}, |
49 | 49 |
}) |
50 |
- .then(function (response) { |
|
51 |
- // console.log("logout - response : ", response); |
|
52 |
- vm.$router.push({ path: "/Login.page", query: {} }); |
|
53 |
- }) |
|
50 |
+ .then(function (response) { |
|
51 |
+ // console.log("logout - response : ", response); |
|
52 |
+ vm.$router.push({ path: "/Login.page", query: {} }); |
|
53 |
+ }) |
|
54 | 54 |
.catch(function (error) { |
55 |
- console.log("logout - error : ", error); |
|
56 |
- }); |
|
55 |
+ console.log("logout - error : ", error); |
|
56 |
+ }); |
|
57 | 57 |
}, |
58 |
- }, |
|
58 |
+ }, |
|
59 | 59 |
watch: { |
60 | 60 |
|
61 | 61 |
}, |
--- client/views/layout/Menu.vue
+++ client/views/layout/Menu.vue
... | ... | @@ -66,14 +66,14 @@ |
66 | 66 |
{ text: "자료집", link: "/Data.page" } |
67 | 67 |
] |
68 | 68 |
}, |
69 |
- { |
|
70 |
- text: "네트워킹", |
|
71 |
- link: "", |
|
72 |
- isHovered: false, |
|
73 |
- subMenu: [ |
|
74 |
- { text: "기업 홍보관", link: "/Matching.page" }, |
|
75 |
- ] |
|
76 |
- }, |
|
69 |
+ // { |
|
70 |
+ // text: "네트워킹", |
|
71 |
+ // link: "", |
|
72 |
+ // isHovered: false, |
|
73 |
+ // subMenu: [ |
|
74 |
+ // { text: "기업 홍보관", link: "/Matching.page" }, |
|
75 |
+ // ] |
|
76 |
+ // }, |
|
77 | 77 |
{ |
78 | 78 |
text: "커뮤니티", |
79 | 79 |
link: "/Notice.page", |
... | ... | @@ -92,15 +92,15 @@ |
92 | 92 |
// { text: "협력 기업", link: "" } |
93 | 93 |
] |
94 | 94 |
}, |
95 |
- { |
|
96 |
- text: "마이페이지", |
|
97 |
- link: "/Info.page", |
|
98 |
- isHovered: false, |
|
99 |
- subMenu: [ |
|
100 |
- { text: "내 정보 수정", link: "/Info.page" }, |
|
101 |
- { text: "매칭 관리", link: "/MatchingManager.page" } |
|
102 |
- ] |
|
103 |
- } |
|
95 |
+ // { |
|
96 |
+ // text: "마이페이지", |
|
97 |
+ // link: "/Info.page", |
|
98 |
+ // isHovered: false, |
|
99 |
+ // subMenu: [ |
|
100 |
+ // { text: "내 정보 수정", link: "/Info.page" }, |
|
101 |
+ // { text: "매칭 관리", link: "/MatchingManager.page" } |
|
102 |
+ // ] |
|
103 |
+ // } |
|
104 | 104 |
] |
105 | 105 |
}; |
106 | 106 |
}, |
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?