You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
29 lines
1.4 KiB
<%@ page language="java" pageEncoding="UTF-8" import="com.cjy.util.SystemPropertyManager"%>
|
|
<%@ page import="com.cjy.sysuser.entity.SysUser" %>
|
|
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="cjy" uri="http://cjy-tag.com" %>
|
|
<% String ctx = request.getContextPath();
|
|
request.setAttribute("ctx", ctx);
|
|
String sysname = SystemPropertyManager.getProperty("platform.name");
|
|
String loginlogo = SystemPropertyManager.getProperty("platform.loginlogo");
|
|
String logintitle = SystemPropertyManager.getProperty("platform.logintitle");
|
|
String mainlogo = SystemPropertyManager.getProperty("platform.mainlogo");
|
|
loginlogo = ctx + loginlogo;
|
|
logintitle = ctx + logintitle;
|
|
mainlogo = ctx + mainlogo;
|
|
//out.print(sysname);
|
|
%>
|
|
|
|
<link rel="stylesheet" href="${ctx}/common/provider/easyui/themes/bootstrap/easyui.css">
|
|
<link rel="stylesheet" href="${ctx}/common/provider/easyui/themes/icon.css">
|
|
|
|
<script src="${ctx}/common/provider/jquery.min.js"></script>
|
|
<script src="${ctx}/common/js/js-hook.js"></script>
|
|
<script src="${ctx}/common/provider/easyui/jquery.easyui.min.js"></script>
|
|
<script src="${ctx}/common/provider/easyui/locale/easyui-lang-zh_CN.js"></script>
|
|
<script src="${ctx}/common/js/easyuiUtility.js"></script>
|
|
<script src="${ctx}/common/js/formToJson.js"></script>
|
|
<script type="text/javascript">
|
|
var _CTX = '${ctx}';
|
|
var region = '${region}';
|
|
</script>
|
|
|