mirror of https://gitee.com/stylefeng/guns
46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<title>${constants.getSystemName()}</title>
|
||
<meta charset="utf-8"/>
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
<link rel="stylesheet" href="${ctxPath}/assets/common/libs/layui/css/layui.css?v=${constants.getReleaseVersion()}"/>
|
||
<link rel="stylesheet" href="${ctxPath}/assets/common/module/admin.css?v=${constants.getReleaseVersion()}"/>
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<!-- 加载动画,移除位置在common.js中 -->
|
||
<div class="page-loading">
|
||
<div class="ball-loader">
|
||
<span></span><span></span><span></span><span></span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="layui-card-body" style="text-align: center;">
|
||
<h2 style="margin-top: 170px;margin-bottom: 20px;font-size: 28px;color: #91ADDC;">欢迎使用${constants.getSystemName()}</h2>
|
||
<img src="${ctxPath}/assets/common/images/welcome.png" style="max-width: 100%;">
|
||
</div>
|
||
|
||
<!-- js部分 -->
|
||
@/* 加入contextPath属性和session超时的配置 */
|
||
<script type="text/javascript">
|
||
var Feng = {
|
||
ctxPath: "${ctxPath}",
|
||
version: '${constants.getReleaseVersion()}'
|
||
};
|
||
</script>
|
||
<script type="text/javascript" src="${ctxPath}/assets/common/libs/layui/layui.js?v=${constants.getReleaseVersion()}"></script>
|
||
<script type="text/javascript" src="${ctxPath}/assets/common/js/common.js?v=${constants.getReleaseVersion()}"></script>
|
||
|
||
<script>
|
||
layui.use(['layer'], function () {
|
||
var $ = layui.jquery;
|
||
var layer = layui.layer;
|
||
});
|
||
</script>
|
||
</body>
|
||
|
||
</html> |