1、错误异常界面国际化;2、服务请求异常国际化;3、文件样例界面样式修改。
This commit is contained in:
@@ -24,18 +24,18 @@ else {
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 - 操作权限不足</title>
|
||||
<title>403 - <spring:message code="no_permission"/></title>
|
||||
<%@include file="/WEB-INF/include/header.jsp" %>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container-fluid">
|
||||
<div class="page-header"><h1>操作权限不足-403.</h1></div>
|
||||
<div class="page-header"><h1><spring:message code="no_permission"/>-403.</h1></div>
|
||||
<%
|
||||
if (ex!=null && StringUtils.startsWith(ex.getMessage(), "msg:")){
|
||||
out.print("<div>"+StringUtils.replace(ex.getMessage(), "msg:", "")+" <br/> <br/></div>");
|
||||
}
|
||||
%>
|
||||
<div><a href="javascript:" onclick="history.go(-1);" class="btn">返回上一页</a></div>
|
||||
<div><a href="javascript:" onclick="history.go(-1);" class="btn"><spring:message code="return_lastpage"/></a></div>
|
||||
<script>try{top.$.jBox.closeTip();}catch(e){}</script>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user