
250322 방선주 company, government 를 portal로 변경 및 db에 맞게 메뉴아이디 수정
@b3bae6800bc6e51c1f913664b057b9cfe9a4a5be
--- client/views/component/comment/CommentItem.vue
+++ client/views/component/comment/CommentItem.vue
... | ... | @@ -21,7 +21,7 @@ |
21 | 21 |
<button :class="{ |
22 | 22 |
'large-btn': true, |
23 | 23 |
'blue-btn': pageRole == 'adm', |
24 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
24 |
+ 'green-btn': pageRole == 'portal', |
|
25 | 25 |
}" @click="fnInsertCmnt(comment)"> |
26 | 26 |
등록 |
27 | 27 |
</button> |
... | ... | @@ -44,7 +44,7 @@ |
44 | 44 |
'ml5 comment-item-btn icon-btn radius pd5': true, |
45 | 45 |
'dark-gray': pageRole == 'adm', |
46 | 46 |
'dark-gray': |
47 |
- pageRole == 'government' || pageRole == 'company', |
|
47 |
+ pageRole == 'portal', |
|
48 | 48 |
}" @click="fnUpdate(comment)"> |
49 | 49 |
수정 |
50 | 50 |
</button> |
--- client/views/component/userInfo/UserAuthorList.vue
+++ client/views/component/userInfo/UserAuthorList.vue
... | ... | @@ -7,7 +7,7 @@ |
7 | 7 |
:class="{ |
8 | 8 |
'large-btn': true, |
9 | 9 |
'blue-border-btn': pageRole == 'adm', |
10 |
- 'green-border-btn': pageRole == 'government', |
|
10 |
+ 'green-border-btn': pageRole == 'portal', |
|
11 | 11 |
}" |
12 | 12 |
@click="fnAuthAddModalOpen" |
13 | 13 |
> |
... | ... | @@ -68,7 +68,7 @@ |
68 | 68 |
:class="{ |
69 | 69 |
'large-btn': true, |
70 | 70 |
'blue-btn': pageRole == 'adm', |
71 |
- 'green-btn': pageRole == 'government', |
|
71 |
+ 'green-btn': pageRole == 'portal', |
|
72 | 72 |
}" |
73 | 73 |
@click="fnAuthSelect(authrt)" |
74 | 74 |
> |
--- client/views/component/userInfo/UserInfoInsert.vue
+++ client/views/component/userInfo/UserInfoInsert.vue
... | ... | @@ -247,7 +247,7 @@ |
247 | 247 |
:class="{ |
248 | 248 |
'large-btn': true, |
249 | 249 |
'blue-border-btn': pageRole == 'adm', |
250 |
- 'green-border-btn': pageRole == 'government', |
|
250 |
+ 'green-border-btn': pageRole == 'portal', |
|
251 | 251 |
}" |
252 | 252 |
@click="fnZipSearch" |
253 | 253 |
> |
... | ... | @@ -339,7 +339,7 @@ |
339 | 339 |
:class="{ |
340 | 340 |
'large-btn': true, |
341 | 341 |
'blue-btn': pageRole == 'adm', |
342 |
- 'green-btn': pageRole == 'government', |
|
342 |
+ 'green-btn': pageRole == 'portal', |
|
343 | 343 |
}" |
344 | 344 |
@click="fnUpsert" |
345 | 345 |
> |
... | ... | @@ -425,7 +425,7 @@ |
425 | 425 |
// 실행 |
426 | 426 |
try { |
427 | 427 |
const response = await mbrDetailProc(data); |
428 |
- if (this.pageRole == "government") { |
|
428 |
+ if (this.pageRole == "portal") { |
|
429 | 429 |
for (let author of response.data.data.authorList) { |
430 | 430 |
if (author.authrtCd == "ROLE_ADMIN") { |
431 | 431 |
this.showOpt = defaultAdminInfoParams; |
--- client/views/component/userInfo/UserInfoView.vue
+++ client/views/component/userInfo/UserInfoView.vue
... | ... | @@ -267,7 +267,7 @@ |
267 | 267 |
:class="{ |
268 | 268 |
'large-btn': true, |
269 | 269 |
'blue-border-btn': pageRole == 'adm', |
270 |
- 'green-border-btn': pageRole == 'government', |
|
270 |
+ 'green-border-btn': pageRole == 'portal', |
|
271 | 271 |
}" |
272 | 272 |
@click="fnUpdate" |
273 | 273 |
> |
... | ... | @@ -342,7 +342,7 @@ |
342 | 342 |
// 실행 |
343 | 343 |
try { |
344 | 344 |
const response = await mbrDetailProc(data); |
345 |
- if (this.pageRole == "government") { |
|
345 |
+ if (this.pageRole == "portal") { |
|
346 | 346 |
for (let author of response.data.data.authorList) { |
347 | 347 |
if (author.authrtCd == "ROLE_ADMIN") { |
348 | 348 |
this.showOpt = defaultAdminInfoParams; |
--- client/views/layout/AdminMenu.vue
+++ client/views/layout/AdminMenu.vue
... | ... | @@ -128,7 +128,7 @@ |
128 | 128 |
if (newVal && this.menuList.length > 0) { |
129 | 129 |
await this.cntnStatsSave(this.menuList[0].menuId); |
130 | 130 |
if ( |
131 |
- newVal.menuId == "MENU_000000000000011" && |
|
131 |
+ newVal.menuId == "MENU_000000000000010" && |
|
132 | 132 |
this.$store.state.path.includes("BBS_MNG_") |
133 | 133 |
) { |
134 | 134 |
return; |
--- client/views/layout/UserHeader.vue
+++ client/views/layout/UserHeader.vue
... | ... | @@ -13,7 +13,7 @@ |
13 | 13 |
</router-link> |
14 | 14 |
|
15 | 15 |
</div> |
16 |
- <div v-show="pageRole === 'company'" class="mobile-menu mr10"> |
|
16 |
+ <div v-show="pageRole === 'potal'" class="mobile-menu mr10"> |
|
17 | 17 |
<!-- <p class="white detail-text">문의전화</p> --> |
18 | 18 |
<p>☎ 054)639-6161~3</p> |
19 | 19 |
</div> |
... | ... | @@ -41,7 +41,7 @@ |
41 | 41 |
</div> |
42 | 42 |
</div> |
43 | 43 |
</div> |
44 |
- <div v-show="pageRole === 'company'" class="pc-menu"> |
|
44 |
+ <div v-show="pageRole === 'potal'" class="pc-menu"> |
|
45 | 45 |
<!-- <p class="white detail-text">문의전화</p> --> |
46 | 46 |
<p |
47 | 47 |
> |
... | ... | @@ -81,7 +81,7 @@ |
81 | 81 |
// 사용자 정보 보기로 이동 |
82 | 82 |
fnLink() { |
83 | 83 |
this.$router.push({ |
84 |
- path: "/government/myInfo/view.page", |
|
84 |
+ path: "/portal/myInfo/view.page", |
|
85 | 85 |
}); |
86 | 86 |
}, |
87 | 87 |
}, |
--- client/views/layout/UserMenu.vue
+++ client/views/layout/UserMenu.vue
... | ... | @@ -19,8 +19,7 @@ |
19 | 19 |
:class="{ |
20 | 20 |
show: currentOpenIndex === index, |
21 | 21 |
'company-sub-menu': |
22 |
- pageRole == 'company' && |
|
23 |
- $route.path === '/company/main.page', |
|
22 |
+ pageRole == 'potal' |
|
24 | 23 |
}" |
25 | 24 |
> |
26 | 25 |
<div class="sub-menu-inner" > |
... | ... | @@ -73,8 +72,7 @@ |
73 | 72 |
:class="{ |
74 | 73 |
show: currentOpenIndex === index, |
75 | 74 |
'company-sub-menu': |
76 |
- pageRole == 'company' && |
|
77 |
- $route.path === '/company/main.page', |
|
75 |
+ pageRole == 'potal', |
|
78 | 76 |
}" |
79 | 77 |
> |
80 | 78 |
<div class="w1400"> |
... | ... | @@ -148,8 +146,7 @@ |
148 | 146 |
try { |
149 | 147 |
const params = { |
150 | 148 |
roles: this.roles, |
151 |
- menuType: 'government', |
|
152 |
- // menuType: store.state.userType, |
|
149 |
+ menuType: 'portal', |
|
153 | 150 |
}; |
154 | 151 |
console.log('params', params); |
155 | 152 |
const res = await findBySysMenu(params); |
... | ... | @@ -216,7 +213,7 @@ |
216 | 213 |
let menuIndex = -1; // 인덱스를 저장할 변수 초기화 |
217 | 214 |
const url = this.$store.state.path; |
218 | 215 |
// 메인일 때 |
219 |
- if (url == "/government" || url == "/company/main.page") { |
|
216 |
+ if (url == "/portal" || url == "/company/main.page") { |
|
220 | 217 |
return (this.currentActiveIndex = null); |
221 | 218 |
} |
222 | 219 |
const lastSlashIndex = path.lastIndexOf("/"); // 마지막 '/' 인덱스 |
--- client/views/pages/adm/boardManagement/template/commonTemplate/CommonInsert.vue
+++ client/views/pages/adm/boardManagement/template/commonTemplate/CommonInsert.vue
... | ... | @@ -3,14 +3,14 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 | 12 |
'page-title point-font mb30': |
13 |
- pageRole == 'government' || pageRole == 'company', |
|
13 |
+ pageRole == 'portal', |
|
14 | 14 |
}" |
15 | 15 |
> |
16 | 16 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 |
:class="{ |
27 | 27 |
'text-lf': true, |
28 | 28 |
'point-font2': pageRole == 'adm', |
29 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
29 |
+ 'point-font': pageRole == 'portal', |
|
30 | 30 |
}" |
31 | 31 |
> |
32 | 32 |
<span>제목</span> |
... | ... | @@ -46,7 +46,7 @@ |
46 | 46 |
:class="{ |
47 | 47 |
'text-lf': true, |
48 | 48 |
'point-font2': pageRole == 'adm', |
49 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
49 |
+ 'point-font': pageRole == 'portal', |
|
50 | 50 |
}" |
51 | 51 |
> |
52 | 52 |
<span>내용</span> |
... | ... | @@ -67,7 +67,7 @@ |
67 | 67 |
:class="{ |
68 | 68 |
'text-lf': true, |
69 | 69 |
'point-font2': pageRole == 'adm', |
70 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
70 |
+ 'point-font': pageRole == 'portal', |
|
71 | 71 |
}" |
72 | 72 |
> |
73 | 73 |
첨부파일 |
... | ... | @@ -81,7 +81,7 @@ |
81 | 81 |
'large-btn text-ct': true, |
82 | 82 |
'blue-border-btn': pageRole == 'adm', |
83 | 83 |
'green-border-btn': |
84 |
- pageRole == 'government' || pageRole == 'company', |
|
84 |
+ pageRole == 'portal', |
|
85 | 85 |
}" |
86 | 86 |
>파일찾기</label |
87 | 87 |
> |
... | ... | @@ -129,7 +129,7 @@ |
129 | 129 |
:class="{ |
130 | 130 |
'text-lf': true, |
131 | 131 |
'point-font2': pageRole == 'adm', |
132 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
132 |
+ 'point-font': pageRole == 'portal', |
|
133 | 133 |
}" |
134 | 134 |
> |
135 | 135 |
공지글 |
... | ... | @@ -166,7 +166,7 @@ |
166 | 166 |
:class="{ |
167 | 167 |
'text-lf': true, |
168 | 168 |
'point-font2': pageRole == 'adm', |
169 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
169 |
+ 'point-font': pageRole == 'portal', |
|
170 | 170 |
}" |
171 | 171 |
> |
172 | 172 |
공지글 게시기간 |
... | ... | @@ -198,7 +198,7 @@ |
198 | 198 |
:class="{ |
199 | 199 |
'text-lf': true, |
200 | 200 |
'point-font2': pageRole == 'adm', |
201 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
201 |
+ 'point-font': pageRole == 'portal', |
|
202 | 202 |
}" |
203 | 203 |
> |
204 | 204 |
비밀글 |
... | ... | @@ -238,7 +238,7 @@ |
238 | 238 |
:class="{ |
239 | 239 |
'large-btn': true, |
240 | 240 |
'blue-btn': pageRole == 'adm', |
241 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
241 |
+ 'green-btn': pageRole == 'portal', |
|
242 | 242 |
}" |
243 | 243 |
@click="fnInsert" |
244 | 244 |
> |
--- client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
+++ client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
... | ... | @@ -3,14 +3,14 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 | 12 |
'page-title point-font mb30': |
13 |
- pageRole == 'government' || pageRole == 'company', |
|
13 |
+ pageRole == 'portal', |
|
14 | 14 |
}" |
15 | 15 |
> |
16 | 16 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 |
'large-btn': true, |
51 | 51 |
'blue-border-btn': pageRole == 'adm', |
52 | 52 |
'green-border-btn': |
53 |
- pageRole == 'government' || pageRole == 'company', |
|
53 |
+ pageRole == 'portal', |
|
54 | 54 |
}" |
55 | 55 |
@click="findAll" |
56 | 56 |
> |
... | ... | @@ -90,7 +90,7 @@ |
90 | 90 |
:class="{ |
91 | 91 |
'large-btn': true, |
92 | 92 |
'blue-border-btn': pageRole == 'adm', |
93 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
93 |
+ 'green-btn': pageRole == 'portal', |
|
94 | 94 |
}" |
95 | 95 |
@click="fnAdd" |
96 | 96 |
> |
--- client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectListOne.vue
+++ client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectListOne.vue
... | ... | @@ -3,13 +3,13 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 |
- 'page-title point-font mb30': pageRole == 'government' || 'company', |
|
12 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
13 | 13 |
}" |
14 | 14 |
> |
15 | 15 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -30,7 +30,7 @@ |
30 | 30 |
:class="{ |
31 | 31 |
'detail-table-title point-font2 mb10': pageRole == 'adm', |
32 | 32 |
'detail-table-title point-font mb10': |
33 |
- pageRole == 'government' || pageRole == 'company', |
|
33 |
+ pageRole == 'portal', |
|
34 | 34 |
}" |
35 | 35 |
> |
36 | 36 |
{{ bbsCn.bbsNm }} |
... | ... | @@ -53,7 +53,7 @@ |
53 | 53 |
<td |
54 | 54 |
:class="{ |
55 | 55 |
'pd15 point-font2': pageRole == 'adm', |
56 |
- 'pd15 point-font': pageRole == 'government' || 'company', |
|
56 |
+ 'pd15 point-font': pageRole == 'portal', |
|
57 | 57 |
}" |
58 | 58 |
> |
59 | 59 |
첨부파일 |
... | ... | @@ -93,7 +93,7 @@ |
93 | 93 |
'large-btn': true, |
94 | 94 |
'blue-border-btn': pageRole == 'adm', |
95 | 95 |
'green-border-btn': |
96 |
- pageRole == 'government' || pageRole == 'company', |
|
96 |
+ pageRole == 'portal', |
|
97 | 97 |
}" |
98 | 98 |
@click="fnUpdate" |
99 | 99 |
> |
... | ... | @@ -144,7 +144,7 @@ |
144 | 144 |
:class="{ |
145 | 145 |
pd30: true, |
146 | 146 |
'comment-zone': pageRole == 'adm', |
147 |
- 'comment-zone2': pageRole == 'government' || pageRole == 'company', |
|
147 |
+ 'comment-zone2': pageRole == 'portal', |
|
148 | 148 |
}" |
149 | 149 |
> |
150 | 150 |
<div class="flex justify-start align-start mb30"> |
... | ... | @@ -161,7 +161,7 @@ |
161 | 161 |
:class="{ |
162 | 162 |
'large-btn comment-btn radius': true, |
163 | 163 |
'blue-btn': pageRole == 'adm', |
164 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
164 |
+ 'green-btn': pageRole == 'portal', |
|
165 | 165 |
}" |
166 | 166 |
@click="fnInsertCmnt" |
167 | 167 |
> |
--- client/views/pages/adm/boardManagement/template/faqTemplate/FaqInsert.vue
+++ client/views/pages/adm/boardManagement/template/faqTemplate/FaqInsert.vue
... | ... | @@ -3,13 +3,13 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 |
- 'page-title point-font mb30': pageRole == 'government' || 'company', |
|
12 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
13 | 13 |
}" |
14 | 14 |
> |
15 | 15 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 |
:class="{ |
27 | 27 |
'text-lf': true, |
28 | 28 |
'point-font2': pageRole == 'adm', |
29 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
29 |
+ 'point-font': pageRole == 'portal', |
|
30 | 30 |
}" |
31 | 31 |
> |
32 | 32 |
<span>내용</span> |
... | ... | @@ -57,7 +57,7 @@ |
57 | 57 |
:class="{ |
58 | 58 |
'text-lf': true, |
59 | 59 |
'point-font2': pageRole == 'adm', |
60 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
60 |
+ 'point-font': pageRole == 'portal', |
|
61 | 61 |
}" |
62 | 62 |
> |
63 | 63 |
첨부파일 |
... | ... | @@ -120,7 +120,7 @@ |
120 | 120 |
:class="{ |
121 | 121 |
'text-lf': true, |
122 | 122 |
'point-font2': pageRole == 'adm', |
123 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
123 |
+ 'point-font': pageRole == 'portal', |
|
124 | 124 |
}" |
125 | 125 |
> |
126 | 126 |
공지글 |
... | ... | @@ -157,7 +157,7 @@ |
157 | 157 |
:class="{ |
158 | 158 |
'text-lf': true, |
159 | 159 |
'point-font2': pageRole == 'adm', |
160 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
160 |
+ 'point-font': pageRole == 'portal', |
|
161 | 161 |
}" |
162 | 162 |
> |
163 | 163 |
공지글 게시기간 |
... | ... | @@ -189,7 +189,7 @@ |
189 | 189 |
:class="{ |
190 | 190 |
'text-lf': true, |
191 | 191 |
'point-font2': pageRole == 'adm', |
192 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
192 |
+ 'point-font': pageRole == 'portal', |
|
193 | 193 |
}" |
194 | 194 |
> |
195 | 195 |
비밀글 |
... | ... | @@ -230,7 +230,7 @@ |
230 | 230 |
:class="{ |
231 | 231 |
'large-btn': true, |
232 | 232 |
'blue-btn': pageRole == 'adm', |
233 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
233 |
+ 'green-btn': pageRole == 'portal', |
|
234 | 234 |
}" |
235 | 235 |
@click="fnInsert" |
236 | 236 |
> |
... | ... | @@ -242,7 +242,7 @@ |
242 | 242 |
:class="{ |
243 | 243 |
'large-btn': true, |
244 | 244 |
'blue-btn': pageRole == 'adm', |
245 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
245 |
+ 'green-btn': pageRole == 'portal', |
|
246 | 246 |
}" |
247 | 247 |
@click="fnAnsInsert" |
248 | 248 |
> |
--- client/views/pages/adm/boardManagement/template/faqTemplate/FaqSelectList.vue
+++ client/views/pages/adm/boardManagement/template/faqTemplate/FaqSelectList.vue
... | ... | @@ -3,14 +3,14 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 | 12 |
'page-title point-font mb30': |
13 |
- pageRole == 'government' || pageRole == 'company', |
|
13 |
+ pageRole == 'portal', |
|
14 | 14 |
}" |
15 | 15 |
> |
16 | 16 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 |
'large-btn': true, |
51 | 51 |
'blue-border-btn': pageRole == 'adm', |
52 | 52 |
'green-border-btn': |
53 |
- pageRole == 'government' || pageRole == 'company', |
|
53 |
+ pageRole == 'portal', |
|
54 | 54 |
}" |
55 | 55 |
@click="findAll" |
56 | 56 |
> |
... | ... | @@ -123,7 +123,7 @@ |
123 | 123 |
'large-btn': true, |
124 | 124 |
'blue-border-btn': pageRole == 'adm', |
125 | 125 |
'green-border-btn': |
126 |
- pageRole == 'government' || pageRole == 'company', |
|
126 |
+ pageRole == 'portal', |
|
127 | 127 |
}" |
128 | 128 |
@click="fnUpdate(item.bbsId)" |
129 | 129 |
> |
... | ... | @@ -184,7 +184,7 @@ |
184 | 184 |
'large-btn': true, |
185 | 185 |
'blue-border-btn': pageRole == 'adm', |
186 | 186 |
'green-border-btn': |
187 |
- pageRole == 'government' || pageRole == 'company', |
|
187 |
+ pageRole == 'portal', |
|
188 | 188 |
}" |
189 | 189 |
@click="fnAnswer(item.bbsId)" |
190 | 190 |
> |
... | ... | @@ -220,7 +220,7 @@ |
220 | 220 |
:class="{ |
221 | 221 |
'large-btn': true, |
222 | 222 |
'blue-border-btn': pageRole == 'adm', |
223 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
223 |
+ 'green-btn': pageRole == 'portal', |
|
224 | 224 |
}" |
225 | 225 |
@click="fnAdd" |
226 | 226 |
> |
--- client/views/pages/adm/boardManagement/template/galleryTemplate/GalleryInsert.vue
+++ client/views/pages/adm/boardManagement/template/galleryTemplate/GalleryInsert.vue
... | ... | @@ -3,13 +3,13 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 |
- 'page-title point-font mb30': pageRole == 'government' || 'company', |
|
12 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
13 | 13 |
}" |
14 | 14 |
> |
15 | 15 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -25,7 +25,7 @@ |
25 | 25 |
:class="{ |
26 | 26 |
'text-lf': true, |
27 | 27 |
'point-font2': pageRole == 'adm', |
28 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
28 |
+ 'point-font': pageRole == 'portal', |
|
29 | 29 |
}" |
30 | 30 |
> |
31 | 31 |
<span>제목</span> |
... | ... | @@ -45,7 +45,7 @@ |
45 | 45 |
:class="{ |
46 | 46 |
'text-lf': true, |
47 | 47 |
'point-font2': pageRole == 'adm', |
48 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
48 |
+ 'point-font': pageRole == 'portal', |
|
49 | 49 |
}" |
50 | 50 |
> |
51 | 51 |
<span>내용</span> |
... | ... | @@ -65,7 +65,7 @@ |
65 | 65 |
:class="{ |
66 | 66 |
'text-lf': true, |
67 | 67 |
'point-font2': pageRole == 'adm', |
68 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
68 |
+ 'point-font': pageRole == 'portal', |
|
69 | 69 |
}" |
70 | 70 |
> |
71 | 71 |
<span>이미지파일</span> |
... | ... | @@ -80,7 +80,7 @@ |
80 | 80 |
'large-btn text-ct': true, |
81 | 81 |
'blue-border-btn': pageRole == 'adm', |
82 | 82 |
'green-border-btn': |
83 |
- pageRole == 'government' || pageRole == 'company', |
|
83 |
+ pageRole == 'portal', |
|
84 | 84 |
}" |
85 | 85 |
> |
86 | 86 |
파일찾기 |
... | ... | @@ -139,7 +139,7 @@ |
139 | 139 |
:class="{ |
140 | 140 |
'text-lf': true, |
141 | 141 |
'point-font2': pageRole == 'adm', |
142 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
142 |
+ 'point-font': pageRole == 'portal', |
|
143 | 143 |
}" |
144 | 144 |
> |
145 | 145 |
첨부파일 |
... | ... | @@ -153,7 +153,7 @@ |
153 | 153 |
'large-btn text-ct': true, |
154 | 154 |
'blue-border-btn': pageRole == 'adm', |
155 | 155 |
'green-border-btn': |
156 |
- pageRole == 'government' || pageRole == 'company', |
|
156 |
+ pageRole == 'portal', |
|
157 | 157 |
}" |
158 | 158 |
> |
159 | 159 |
파일찾기 |
... | ... | @@ -202,7 +202,7 @@ |
202 | 202 |
:class="{ |
203 | 203 |
'text-lf': true, |
204 | 204 |
'point-font2': pageRole == 'adm', |
205 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
205 |
+ 'point-font': pageRole == 'portal', |
|
206 | 206 |
}" |
207 | 207 |
> |
208 | 208 |
공지글 |
... | ... | @@ -263,7 +263,7 @@ |
263 | 263 |
:class="{ |
264 | 264 |
'text-lf': true, |
265 | 265 |
'point-font2': pageRole == 'adm', |
266 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
266 |
+ 'point-font': pageRole == 'portal', |
|
267 | 267 |
}" |
268 | 268 |
> |
269 | 269 |
비밀글 |
... | ... | @@ -303,7 +303,7 @@ |
303 | 303 |
:class="{ |
304 | 304 |
'large-btn': true, |
305 | 305 |
'blue-btn': pageRole == 'adm', |
306 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
306 |
+ 'green-btn': pageRole == 'portal', |
|
307 | 307 |
}" |
308 | 308 |
@click="fnInsert" |
309 | 309 |
> |
--- client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
+++ client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
... | ... | @@ -2,11 +2,11 @@ |
2 | 2 |
<div :class="{ |
3 | 3 |
'content gall-template': true, |
4 | 4 |
'': pageRole === 'adm', |
5 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company' |
|
5 |
+ 'w1400 pt50 pb50': pageRole === 'portal' |
|
6 | 6 |
}"> |
7 | 7 |
<div :class="{ |
8 | 8 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
9 |
- 'page-title point-font mb30': pageRole == 'government' || pageRole == 'company', |
|
9 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
10 | 10 |
}"> |
11 | 11 |
<p>{{ bbsMng.bbsNm }}</p> |
12 | 12 |
</div> |
... | ... | @@ -27,7 +27,7 @@ |
27 | 27 |
<button :class="{ |
28 | 28 |
'large-btn': true, |
29 | 29 |
'blue-border-btn': pageRole == 'adm', |
30 |
- 'green-border-btn': pageRole == 'government' || pageRole == 'company', |
|
30 |
+ 'green-border-btn': pageRole == 'portal', |
|
31 | 31 |
}" @click="findAll">검색</button> |
32 | 32 |
</div> |
33 | 33 |
<div class="gd-6 pr0"> |
... | ... | @@ -72,7 +72,7 @@ |
72 | 72 |
<button :class="{ |
73 | 73 |
'large-btn': true, |
74 | 74 |
'blue-border-btn': pageRole == 'adm', |
75 |
- 'green-btn': pageRole == 'government' || 'company' , |
|
75 |
+ 'green-btn': pageRole == 'portal' , |
|
76 | 76 |
}" @click="fnAdd">등록</button> |
77 | 77 |
</div> |
78 | 78 |
</div> |
--- client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectListOne.vue
+++ client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectListOne.vue
... | ... | @@ -3,13 +3,13 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 |
- 'page-title point-font mb30': pageRole == 'government' || 'company', |
|
12 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
13 | 13 |
}" |
14 | 14 |
> |
15 | 15 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -30,7 +30,7 @@ |
30 | 30 |
:class="{ |
31 | 31 |
'detail-table-title point-font2 mb10': pageRole == 'adm', |
32 | 32 |
'detail-table-title point-font mb10': |
33 |
- pageRole == 'government' || 'company', |
|
33 |
+ pageRole == 'portal', |
|
34 | 34 |
}" |
35 | 35 |
> |
36 | 36 |
{{ bbsCn.bbsNm }} |
... | ... | @@ -89,7 +89,7 @@ |
89 | 89 |
<td |
90 | 90 |
:class="{ |
91 | 91 |
'pd15 point-font2': pageRole == 'adm', |
92 |
- 'pd15 point-font': pageRole == 'government' || 'company', |
|
92 |
+ 'pd15 point-font': pageRole == 'portal', |
|
93 | 93 |
}" |
94 | 94 |
> |
95 | 95 |
첨부파일 |
... | ... | @@ -128,7 +128,7 @@ |
128 | 128 |
'large-btn': true, |
129 | 129 |
'blue-border-btn': pageRole == 'adm', |
130 | 130 |
'green-border-btn': |
131 |
- pageRole == 'government' || pageRole == 'company', |
|
131 |
+ pageRole == 'portal', |
|
132 | 132 |
}" |
133 | 133 |
@click="fnUpdate" |
134 | 134 |
> |
... | ... | @@ -179,7 +179,7 @@ |
179 | 179 |
:class="{ |
180 | 180 |
pd30: true, |
181 | 181 |
'comment-zone': pageRole == 'adm', |
182 |
- 'comment-zone2': pageRole == 'government' || pageRole == 'company', |
|
182 |
+ 'comment-zone2': pageRole == 'portal', |
|
183 | 183 |
}" |
184 | 184 |
> |
185 | 185 |
<div class="flex justify-start align-start mb30"> |
... | ... | @@ -196,7 +196,7 @@ |
196 | 196 |
:class="{ |
197 | 197 |
'large-btn comment-btn radius': true, |
198 | 198 |
'blue-btn': pageRole == 'adm', |
199 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
199 |
+ 'green-btn': pageRole == 'portal', |
|
200 | 200 |
}" |
201 | 201 |
@click="fnInsertCmnt" |
202 | 202 |
> |
--- client/views/pages/adm/boardManagement/template/videoTemplate/VideoInsert.vue
+++ client/views/pages/adm/boardManagement/template/videoTemplate/VideoInsert.vue
... | ... | @@ -3,13 +3,13 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 |
- 'page-title point-font mb30': pageRole == 'government' || 'company', |
|
12 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
13 | 13 |
}" |
14 | 14 |
> |
15 | 15 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -25,7 +25,7 @@ |
25 | 25 |
:class="{ |
26 | 26 |
'text-lf': true, |
27 | 27 |
'point-font2': pageRole == 'adm', |
28 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
28 |
+ 'point-font': pageRole == 'portal', |
|
29 | 29 |
}" |
30 | 30 |
> |
31 | 31 |
<span>제목</span> |
... | ... | @@ -45,7 +45,7 @@ |
45 | 45 |
:class="{ |
46 | 46 |
'text-lf': true, |
47 | 47 |
'point-font2': pageRole == 'adm', |
48 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
48 |
+ 'point-font': pageRole == 'portal', |
|
49 | 49 |
}" |
50 | 50 |
> |
51 | 51 |
<span>내용</span> |
... | ... | @@ -65,7 +65,7 @@ |
65 | 65 |
:class="{ |
66 | 66 |
'text-lf': true, |
67 | 67 |
'point-font2': pageRole == 'adm', |
68 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
68 |
+ 'point-font': pageRole == 'portal', |
|
69 | 69 |
}" |
70 | 70 |
> |
71 | 71 |
<span>영상 URL</span> |
... | ... | @@ -86,7 +86,7 @@ |
86 | 86 |
:class="{ |
87 | 87 |
'text-lf': true, |
88 | 88 |
'point-font2': pageRole == 'adm', |
89 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
89 |
+ 'point-font': pageRole == 'portal', |
|
90 | 90 |
}" |
91 | 91 |
> |
92 | 92 |
썸네일 |
... | ... | @@ -100,7 +100,7 @@ |
100 | 100 |
'large-btn text-ct': true, |
101 | 101 |
'blue-border-btn': pageRole == 'adm', |
102 | 102 |
'green-border-btn': |
103 |
- pageRole == 'government' || pageRole == 'company', |
|
103 |
+ pageRole == 'portal', |
|
104 | 104 |
}" |
105 | 105 |
> |
106 | 106 |
파일찾기 |
... | ... | @@ -155,7 +155,7 @@ |
155 | 155 |
:class="{ |
156 | 156 |
'text-lf': true, |
157 | 157 |
'point-font2': pageRole == 'adm', |
158 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
158 |
+ 'point-font': pageRole == 'portal', |
|
159 | 159 |
}" |
160 | 160 |
> |
161 | 161 |
첨부파일 |
... | ... | @@ -169,7 +169,7 @@ |
169 | 169 |
'large-btn text-ct': true, |
170 | 170 |
'blue-border-btn': pageRole == 'adm', |
171 | 171 |
'green-border-btn': |
172 |
- pageRole == 'government' || pageRole == 'company', |
|
172 |
+ pageRole == 'portal', |
|
173 | 173 |
}" |
174 | 174 |
> |
175 | 175 |
파일찾기 |
... | ... | @@ -218,7 +218,7 @@ |
218 | 218 |
:class="{ |
219 | 219 |
'text-lf': true, |
220 | 220 |
'point-font2': pageRole == 'adm', |
221 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
221 |
+ 'point-font': pageRole == 'portal', |
|
222 | 222 |
}" |
223 | 223 |
> |
224 | 224 |
공지글 |
... | ... | @@ -255,7 +255,7 @@ |
255 | 255 |
:class="{ |
256 | 256 |
'text-lf': true, |
257 | 257 |
'point-font2': pageRole == 'adm', |
258 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
258 |
+ 'point-font': pageRole == 'portal', |
|
259 | 259 |
}" |
260 | 260 |
> |
261 | 261 |
공지글 게시기간 |
... | ... | @@ -287,7 +287,7 @@ |
287 | 287 |
:class="{ |
288 | 288 |
'text-lf': true, |
289 | 289 |
'point-font2': pageRole == 'adm', |
290 |
- 'point-font': pageRole == 'government' || pageRole == 'company', |
|
290 |
+ 'point-font': pageRole == 'portal', |
|
291 | 291 |
}" |
292 | 292 |
> |
293 | 293 |
비밀글 |
... | ... | @@ -327,7 +327,7 @@ |
327 | 327 |
:class="{ |
328 | 328 |
'large-btn': true, |
329 | 329 |
'blue-btn': pageRole == 'adm', |
330 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
330 |
+ 'green-btn': pageRole == 'portal', |
|
331 | 331 |
}" |
332 | 332 |
@click="fnInsert" |
333 | 333 |
> |
--- client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
+++ client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
... | ... | @@ -2,11 +2,11 @@ |
2 | 2 |
<div :class="{ |
3 | 3 |
'content': true, |
4 | 4 |
'': pageRole === 'adm', |
5 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company' |
|
5 |
+ 'w1400 pt50 pb50': pageRole === 'portal' |
|
6 | 6 |
}"> |
7 | 7 |
<div :class="{ |
8 | 8 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
9 |
- 'page-title point-font mb30': pageRole == 'government' || 'company' , |
|
9 |
+ 'page-title point-font mb30': pageRole == 'portal' , |
|
10 | 10 |
}"> |
11 | 11 |
<p>{{ bbsMng.bbsNm }}</p> |
12 | 12 |
</div> |
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 |
<button :class="{ |
27 | 27 |
'large-btn': true, |
28 | 28 |
'blue-border-btn': pageRole == 'adm', |
29 |
- 'green-border-btn': pageRole == 'government', |
|
29 |
+ 'green-border-btn': pageRole == 'portal', |
|
30 | 30 |
}" @click="findAll">검색</button> |
31 | 31 |
</div> |
32 | 32 |
<div class="gd-6 pr0"> |
... | ... | @@ -75,7 +75,7 @@ |
75 | 75 |
<button :class="{ |
76 | 76 |
'large-btn': true, |
77 | 77 |
'blue-border-btn': pageRole == 'adm', |
78 |
- 'green-btn': pageRole == 'government' || 'company' , |
|
78 |
+ 'green-btn': pageRole == 'portal' , |
|
79 | 79 |
}" @click="fnAdd">등록</button> |
80 | 80 |
</div> |
81 | 81 |
</div> |
--- client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectListOne.vue
+++ client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectListOne.vue
... | ... | @@ -3,13 +3,13 @@ |
3 | 3 |
:class="{ |
4 | 4 |
content: true, |
5 | 5 |
'admin-style overflow-y': pageRole === 'adm', |
6 |
- 'w1400 pt50 pb50': pageRole === 'government' || pageRole === 'company', |
|
6 |
+ 'w1400 pt50 pb50': pageRole === 'portal', |
|
7 | 7 |
}" |
8 | 8 |
> |
9 | 9 |
<div |
10 | 10 |
:class="{ |
11 | 11 |
'admin-page-title point-font2 mb30': pageRole == 'adm', |
12 |
- 'page-title point-font mb30': pageRole == 'government' || 'company', |
|
12 |
+ 'page-title point-font mb30': pageRole == 'portal', |
|
13 | 13 |
}" |
14 | 14 |
> |
15 | 15 |
<p>{{ bbsMng.bbsNm }}</p> |
... | ... | @@ -30,7 +30,7 @@ |
30 | 30 |
:class="{ |
31 | 31 |
'detail-table-title point-font2 mb10': pageRole == 'adm', |
32 | 32 |
'detail-table-title point-font mb10': |
33 |
- pageRole == 'government' || 'company', |
|
33 |
+ pageRole == 'portal', |
|
34 | 34 |
}" |
35 | 35 |
> |
36 | 36 |
{{ bbsCn.bbsNm }} |
... | ... | @@ -68,7 +68,7 @@ |
68 | 68 |
<td |
69 | 69 |
:class="{ |
70 | 70 |
'pd15 point-font2': pageRole == 'adm', |
71 |
- 'pd15 point-font': pageRole == 'government' || 'company', |
|
71 |
+ 'pd15 point-font': pageRole == 'portal', |
|
72 | 72 |
}" |
73 | 73 |
> |
74 | 74 |
첨부파일 |
... | ... | @@ -107,7 +107,7 @@ |
107 | 107 |
'large-btn': true, |
108 | 108 |
'blue-border-btn': pageRole == 'adm', |
109 | 109 |
'green-border-btn': |
110 |
- pageRole == 'government' || pageRole == 'company', |
|
110 |
+ pageRole == 'portal', |
|
111 | 111 |
}" |
112 | 112 |
@click="fnUpdate" |
113 | 113 |
> |
... | ... | @@ -158,7 +158,7 @@ |
158 | 158 |
:class="{ |
159 | 159 |
pd30: true, |
160 | 160 |
'comment-zone': pageRole == 'adm', |
161 |
- 'comment-zone2': pageRole == 'government' || pageRole == 'company', |
|
161 |
+ 'comment-zone2': pageRole == 'portal', |
|
162 | 162 |
}" |
163 | 163 |
> |
164 | 164 |
<div class="flex justify-start align-start mb30"> |
... | ... | @@ -175,7 +175,7 @@ |
175 | 175 |
:class="{ |
176 | 176 |
'large-btn comment-btn radius': true, |
177 | 177 |
'blue-btn': pageRole == 'adm', |
178 |
- 'green-btn': pageRole == 'government' || pageRole == 'company', |
|
178 |
+ 'green-btn': pageRole == 'portal', |
|
179 | 179 |
}" |
180 | 180 |
@click="fnInsertCmnt" |
181 | 181 |
> |
--- client/views/pages/adm/main/Main.vue
+++ client/views/pages/adm/main/Main.vue
... | ... | @@ -207,9 +207,9 @@ |
207 | 207 |
this.saveQueryParams("queryParams", this.resetSearch); |
208 | 208 |
this.$store.commit( |
209 | 209 |
"setMenu", |
210 |
- this.findMenu(this.menuList, "MENU_000000000000012") |
|
210 |
+ this.findMenu(this.menuList, "MENU_000000000000011") |
|
211 | 211 |
); |
212 |
- await this.cntnStatsSave("MENU_000000000000034"); |
|
212 |
+ await this.cntnStatsSave("MENU_000000000000029"); |
|
213 | 213 |
this.$router.push({ |
214 | 214 |
name: "admPopupManagementSelectOne", |
215 | 215 |
query: { |
... | ... | @@ -221,7 +221,7 @@ |
221 | 221 |
// 게시판 최신글 상세 보기 |
222 | 222 |
async fnBbsCnViewDetail(idx) { |
223 | 223 |
this.saveQueryParams("queryParams", this.resetSearch); |
224 |
- let depth1 = this.findMenu(this.menuList, "MENU_000000000000011"); |
|
224 |
+ let depth1 = this.findMenu(this.menuList, "MENU_000000000000010"); |
|
225 | 225 |
this.$store.commit("setMenu", depth1); |
226 | 226 |
for (let menu of depth1.childList) { |
227 | 227 |
if (menu.menuTypeCtgry == this.bbsCnList[idx]["id"]) { |
--- client/views/pages/user/portal/main/Main.vue
+++ client/views/pages/user/portal/main/Main.vue
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 |
|
39 | 39 |
<div class="box-out-title flex justify-between align-center"> |
40 | 40 |
<p>공지사항(목록형)</p> |
41 |
- <router-link to="/government/BBS_MNG_000000000000027/list.page" class=" flex align-center"> |
|
41 |
+ <router-link to="/portal/BBS_MNG_000000000000027/list.page" class=" flex align-center"> |
|
42 | 42 |
<p class="mr5">바로가기</p> |
43 | 43 |
<svg-icon type="mdi" :width="15" :height="15" :path="this.$iconPath('mdiArrowRight')"></svg-icon> |
44 | 44 |
</router-link> |
... | ... | @@ -324,7 +324,7 @@ |
324 | 324 |
this.search.menuType = this.menuType; |
325 | 325 |
this.saveQueryParams("totalSearchQueryParams", this.search); // 검색조건 저장 |
326 | 326 |
this.$router.push({ |
327 |
- path: "/government/search.page", |
|
327 |
+ path: "/portal/search.page", |
|
328 | 328 |
}); |
329 | 329 |
}, |
330 | 330 |
|
--- client/views/robots.txt
+++ client/views/robots.txt
... | ... | @@ -1,4 +1,3 @@ |
1 | 1 |
User-agent: * |
2 | 2 |
Disallow:/adm/ |
3 |
-Disallow:/government/ |
|
4 | 3 |
Disallow:/cmmn/(파일 끝에 줄바꿈 문자 없음) |
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?