@@ -249,9 +249,9 @@
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="<c:url value="/css/web_ui.css"/>"/>
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="<c:url value="/css/theme_${themeColor}.css"/>"/>
|
||||
<style>
|
||||
.gnb .sitemap-link { display: inline-block; height: 80px; line-height: 80px; padding: 0 15px; font-size: 14px; color: #000; letter-spacing: -0.5px; opacity: 0.7; transition: all 0.3s; vertical-align: top; }
|
||||
.gnb.sitemap-hover { height: 80px !important; overflow-y: hidden !important; }
|
||||
.gnb.sitemap-hover + .gnb_bg { display: none !important; }
|
||||
.topmenu_box .sitemap-link { display: inline-block; width: 80px; height: 80px; line-height: 80px; box-sizing: border-box; font-size: 14px; color: #666; text-align: center; opacity: 0.7; transition: all 0.3s; margin-top: 0px; }
|
||||
.topmenu_box .sitemap-link:hover { opacity: 1; }
|
||||
.topmenu_box .logout-link { line-height: 80px; margin-top:0; }
|
||||
</style>
|
||||
<script language="javascript" src="<c:url value="/js/jquery-1.12.1.min.js"/>"></script>
|
||||
<script language="javascript" src="<c:url value="/js/prefixfree.min.js"/>"></script>
|
||||
@@ -543,11 +543,6 @@
|
||||
parent.changeLocale($(this).val());
|
||||
});
|
||||
|
||||
$('.sitemap-link').on('mouseenter', function () {
|
||||
$(this).closest('.gnb').addClass('sitemap-hover');
|
||||
}).on('mouseleave', function () {
|
||||
$(this).closest('.gnb').removeClass('sitemap-hover');
|
||||
});
|
||||
});
|
||||
|
||||
$(function() {
|
||||
@@ -578,13 +573,16 @@
|
||||
<span style="display:block;font-size:10px;"><%=localeMessage.getString("screen.lastLogin") %> : <%=LastLoginYms%> [ <%=LastLoginIp%> ]</span>
|
||||
<% } %>
|
||||
</a></li>
|
||||
<li>
|
||||
<select id="selectLocale" name="locale" style="margin-top: 20px; width:80px">
|
||||
<li style="width:100px; line-height:80px; text-align:center;">
|
||||
<select id="selectLocale" name="locale" style="width:60px; padding: 2px; text-align:center;">
|
||||
<option value="en">English</option>
|
||||
<option value="ko">한글</option>
|
||||
</select>
|
||||
</li>
|
||||
<li onclick="logout()"><a href="#" class=""><img src="<c:url value="/img/icon_logout.png"/>"
|
||||
<% if (showSitemapLink) { %>
|
||||
<li><a href="<c:url value="/common/acl/sitemap/sitemapMan.view"><c:param name="menuId" value="<%=SITEMAP_MENU_ID%>"/><c:param name="serviceType" value="<%=serviceKey%>"/></c:url>" target="mainFrame" class="sitemap-link">사이트맵</a></li>
|
||||
<% } %>
|
||||
<li onclick="logout()"><a href="#" class="logout-link"><img src="<c:url value="/img/icon_logout.png"/>"
|
||||
alt=""/><%= localeMessage.getString("screen.logout") %>
|
||||
</a></li>
|
||||
</ul>
|
||||
@@ -629,9 +627,6 @@
|
||||
<%=subLayer.toString()%>
|
||||
</ul>
|
||||
</nav>
|
||||
<% if (showSitemapLink) { %>
|
||||
<a href="<c:url value="/common/acl/sitemap/sitemapMan.view"><c:param name="menuId" value="<%=SITEMAP_MENU_ID%>"/><c:param name="serviceType" value="<%=serviceKey%>"/></c:url>" target="mainFrame" class="sitemap-link">사이트맵</a>
|
||||
<% } %>
|
||||
</div><!-- end gnb -->
|
||||
<div class="gnb_bg"></div>
|
||||
</div><!-- end gnb_wrap -->
|
||||
|
||||
+1
-1
@@ -167,7 +167,7 @@ public class PortalInquiryManService extends BaseService {
|
||||
Inquiry inquiry = portalInquiryService.getById(portalInquiryUI.getId());
|
||||
validateNotClosed(inquiry);
|
||||
// 답변 대기중 상태일 경우만 답변완료로 상태 변경
|
||||
if(inquiry.getInquiryStatus().equals(PENDING)) {
|
||||
if(inquiry.getInquiryStatus().equals(PENDING) || inquiry.getInquiryStatus().equals(REVIEWING)) {
|
||||
inquiry.setInquiryStatus(RESPONDED);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user