메뉴 아이콘 추가

master
DESKTOP-V7KL26R\DBNT 2022-02-15 18:33:13 +09:00
parent 4151628ab7
commit 09915c475b
10 changed files with 20 additions and 12 deletions

4
.gitignore vendored
View File

@ -1,5 +1,7 @@
HELP.md HELP.md
.gradle .gradle
target/
build/ build/
!gradle/wrapper/gradle-wrapper.jar !gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/ !**/src/main/**/build/
@ -35,5 +37,3 @@ out/
### VS Code ### ### VS Code ###
.vscode/ .vscode/
##

View File

@ -44,10 +44,14 @@
<nav class="common_nav"> <nav class="common_nav">
<div class="header_menu"> <div class="header_menu">
<ul> <ul>
<li <c:if test="${fn:contains(thisURL, '/request')}">class="thisOn"</c:if> onclick="location.href='/admin/request'">지도사용 요청</li> <li <c:if test="${fn:contains(thisURL, '/request')}">class="thisOn"</c:if> onclick="location.href='/admin/request'">
<li <c:if test="${fn:contains(thisURL, '/history')}">class="thisOn"</c:if> onclick="location.href='/admin/history'">지도사용 이력</li> <img src="../../../images/icon/icon_map.png" width="30" height="30"> &nbsp;지도사용 요청</li>
<li <c:if test="${fn:contains(thisURL, '/fieldData')}">class="thisOn"</c:if> onclick="location.href='/admin/fieldData'">현장수집 데이터</li> <li <c:if test="${fn:contains(thisURL, '/history')}">class="thisOn"</c:if> onclick="location.href='/admin/history'">
<li <c:if test="${fn:contains(thisURL, '/userInfo')}">class="thisOn"</c:if> onclick="location.href='/admin/userInfo?auth=99'">회원 관리</li> <img src="../../../images/icon/icon_log_on.png" width="30" height="30"> &nbsp;지도사용 이력</li>
<li <c:if test="${fn:contains(thisURL, '/fieldData')}">class="thisOn"</c:if> onclick="location.href='/admin/fieldData'">
<img src="../../../images/icon/icon_eq_on.png" width="30" height="30"> &nbsp;현장수집 데이터</li>
<li <c:if test="${fn:contains(thisURL, '/userInfo')}">class="thisOn"</c:if> onclick="location.href='/admin/userInfo?auth=99'">
<img src="../../../images/icon/icon_supervisor_on.png" width="30" height="30"> &nbsp;회원 관리</li>
</ul> </ul>
</div> </div>
</nav> </nav>

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 950 B

View File

@ -1,5 +1,5 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Created-By: IntelliJ IDEA Created-By: IntelliJ IDEA
Built-By: dbnt Built-By: DBNT
Build-Jdk: version 1.8.0_302 Build-Jdk: version 1.8.0_322

View File

@ -44,10 +44,14 @@
<nav class="common_nav"> <nav class="common_nav">
<div class="header_menu"> <div class="header_menu">
<ul> <ul>
<li <c:if test="${fn:contains(thisURL, '/request')}">class="thisOn"</c:if> onclick="location.href='/admin/request'">지도사용 요청</li> <li <c:if test="${fn:contains(thisURL, '/request')}">class="thisOn"</c:if> onclick="location.href='/admin/request'">
<li <c:if test="${fn:contains(thisURL, '/history')}">class="thisOn"</c:if> onclick="location.href='/admin/history'">지도사용 이력</li> <img src="../../../images/icon/icon_map.png" width="30" height="30"> &nbsp;지도사용 요청</li>
<li <c:if test="${fn:contains(thisURL, '/fieldData')}">class="thisOn"</c:if> onclick="location.href='/admin/fieldData'">현장수집 데이터</li> <li <c:if test="${fn:contains(thisURL, '/history')}">class="thisOn"</c:if> onclick="location.href='/admin/history'">
<li <c:if test="${fn:contains(thisURL, '/userInfo')}">class="thisOn"</c:if> onclick="location.href='/admin/userInfo?auth=99'">회원 관리</li> <img src="../../../images/icon/icon_log_on.png" width="30" height="30"> &nbsp;지도사용 이력</li>
<li <c:if test="${fn:contains(thisURL, '/fieldData')}">class="thisOn"</c:if> onclick="location.href='/admin/fieldData'">
<img src="../../../images/icon/icon_eq_on.png" width="30" height="30"> &nbsp;현장수집 데이터</li>
<li <c:if test="${fn:contains(thisURL, '/userInfo')}">class="thisOn"</c:if> onclick="location.href='/admin/userInfo?auth=99'">
<img src="../../../images/icon/icon_supervisor_on.png" width="30" height="30"> &nbsp;회원 관리</li>
</ul> </ul>
</div> </div>
</nav> </nav>