Browse Source

修改页面中文

xusonglin 4 years ago
parent
commit
4ffdf0bf95

+ 3 - 3
tianti-modules/tianti-module-admin/src/main/webapp/WEB-INF/views/cms/article_flash_view.jsp

@@ -4,13 +4,13 @@
 <%@ include file="../common/common.jsp" %>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>开启Flash-CMS管理系统</title>
+<title>开启Flash-医政沙龙管理系统</title>
 </head>
 <body>
   <p>因为Google系列浏览器默认是没开启Flash控件的,uploadify目前需要用到Flash。</p>
   <p>后续我们会采用H5的方式优化一下。</p>
   <p>目前可以采取如下方式解决,如下图所示(在此网站上始终允许):</p>
   <p><img alt="开启Flash" src="${ctx }/static/images/flashOpen.png"></p>
-  
+
 </body>
-</html>
+</html>

+ 3 - 3
tianti-modules/tianti-module-admin/src/main/webapp/WEB-INF/views/common/jstl.jsp

@@ -2,11 +2,11 @@
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
 <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
 <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
-<%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>  
+<%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>
 
 <c:set var="ctx" value="${pageContext.request.contextPath}"/>
-<c:set var="title" value="CMS管理系统" />
+<c:set var="title" value="医政沙龙管理系统" />
 
 <script type="text/javascript">
 	var _ctx = '${ctx}';
-</script>
+</script>

+ 15 - 16
tianti-modules/tianti-module-admin/src/main/webapp/WEB-INF/views/common/menu.jsp

@@ -6,7 +6,7 @@
             <%-- <a href="javascript:;">
                 <img src="${ctx }/static/images/logo.png" />
             </a> --%>
-            <span style="color: #fff;font-size: 21px;">CMS管理系统</span>
+            <span style="color: #fff;font-size: 21px;">医政沙龙管理系统</span>
         </div>
         <div class="n_user">
             <div class="u_left">
@@ -19,9 +19,9 @@
                 <div class="r_logout"><a href="${ctx }/login_out">[退出]</a></div>
             </div>
         </div>
-        
+
         <div class="n_list" id="menu">
-        	
+
         	<c:forEach items="${sessionScope.session_menu_resource }" var="resource">
 	            <div class="l_item">
 	                <div class="i_default">
@@ -53,43 +53,42 @@
 	                </div>
 	            </div>
             </c:forEach>
-			
+
         </div>
-        
+
         <div class="n_visible">
             <a href="javascript:;"><i class="icon">&#xe5c4;</i></a>
         </div>
-        
+
     </div>
-    
+
 <script type="text/javascript">
 
 $(function(){
-	
+
 	var menuName = '${menu_name}';
-	
+
 	$('#menu div.l_item').each(function(idx, obj){
-		
+
 		var txt = $(obj).find('div.i_default span').text();
 		if($.trim(txt) == menuName){
 			$(obj).addClass('current');
 			return true;
 		}
-		
+
 		$(obj).find('div.i_menu div.m_item').each(function(idxCh, objCh){
-			
+
 			var txtCh = $(objCh).find('span').text();
 			if($.trim(txtCh) == menuName){
 				$(objCh).addClass('current');
 				$(obj).addClass('current');
 				return true;
 			}
-			
+
 		});
-		
+
 	});
-	
+
 });
 
 </script>
-