API신청 메뉴는 기업사용자(cls=1)만 볼 수 있음
parent
f7a23c96e3
commit
9392a116d2
|
|
@ -181,11 +181,15 @@
|
|||
</c:otherwise>
|
||||
</c:choose>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="#" onClick="gourl('apiKey')" onFocus="this.blur()" class="nav-link nav-toggle">
|
||||
<span class="title">API 신청</span>
|
||||
</a>
|
||||
</li>
|
||||
<c:if test="${isLogin == true}">
|
||||
<c:if test="${cls == 1}">
|
||||
<li class="nav-item">
|
||||
<a href="#" onClick="gourl('apiKey')" onFocus="this.blur()" class="nav-link nav-toggle">
|
||||
<span class="title">API 신청</span>
|
||||
</a>
|
||||
</li>
|
||||
</c:if>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${isLogin == true}">
|
||||
<c:if test="${cls == 0}">
|
||||
|
|
|
|||
|
|
@ -172,7 +172,11 @@
|
|||
<a class="dropdown-toggle" data-toggle="dropdown" href="#" onClick="gourl('faq')" onFocus="this.blur()">시추정보 FAQ</a>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a class="dropdown-toggle" data-toggle="dropdown" href="#" onClick="gourl('apiKey')" onFocus="this.blur()">API 신청</a>
|
||||
<c:if test="${isLogin == true}">
|
||||
<c:if test="${cls == 1}">
|
||||
<a class="dropdown-toggle" data-toggle="dropdown" href="#" onClick="gourl('apiKey')" onFocus="this.blur()">API 신청</a>
|
||||
</c:if>
|
||||
</c:if>
|
||||
</li>
|
||||
<c:if test="${isLogin == true}">
|
||||
<c:if test="${cls == 0}">
|
||||
|
|
|
|||
|
|
@ -367,24 +367,28 @@
|
|||
</c:if>
|
||||
|
||||
<c:if test="${eGovUrl == 'apiKey.do'}">
|
||||
<!-- 커뮤니티 > API 신청 시작 -->
|
||||
<h1 class="page-title">
|
||||
<span class="page-title-text">API 신청</span>
|
||||
<ul class="page-category">
|
||||
<li class="category-item">게시판</li>
|
||||
<li class="category-item">API 신청</li>
|
||||
</ul>
|
||||
</h1>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
// 상단메뉴 활성화
|
||||
$(".nav > li.dropdown:eq(6)").addClass("on");
|
||||
// 왼쪽메뉴 활성화
|
||||
$("#community_sub_menu").css("display", "block");
|
||||
$("#community_sub_menu > li.nav-item:eq(5)").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- 커뮤니티 > 시추정보 Q&A 끝 -->
|
||||
<c:if test="${isLogin == true}">
|
||||
<c:if test="${cls == 1}">
|
||||
<!-- 커뮤니티 > API 신청 시작 -->
|
||||
<h1 class="page-title">
|
||||
<span class="page-title-text">API 신청</span>
|
||||
<ul class="page-category">
|
||||
<li class="category-item">게시판</li>
|
||||
<li class="category-item">API 신청</li>
|
||||
</ul>
|
||||
</h1>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
// 상단메뉴 활성화
|
||||
$(".nav > li.dropdown:eq(6)").addClass("on");
|
||||
// 왼쪽메뉴 활성화
|
||||
$("#community_sub_menu").css("display", "block");
|
||||
$("#community_sub_menu > li.nav-item:eq(5)").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- 커뮤니티 > 시추정보 Q&A 끝 -->
|
||||
</c:if>
|
||||
</c:if>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${eGovUrl == 'homeEducationApplicationInquiry.do' || eGovUrl == 'homeEducationApplicationInput.do' }">
|
||||
|
|
|
|||
Loading…
Reference in New Issue