提交 | 用户 | 时间
|
1ac2bc
|
1 |
<!DOCTYPE html> |
懒 |
2 |
<html> |
|
3 |
|
|
4 |
<head> |
|
5 |
<title>${constants.getSystemName()}</title> |
|
6 |
<meta charset="utf-8"/> |
|
7 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
8 |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
|
9 |
<link rel="stylesheet" href="${ctxPath}/assets/common/libs/layui/css/layui.css?v=${constants.getReleaseVersion()}"/> |
|
10 |
<link rel="stylesheet" href="${ctxPath}/assets/common/module/admin.css?v=${constants.getReleaseVersion()}"/> |
|
11 |
</head> |
|
12 |
|
|
13 |
<body> |
|
14 |
|
|
15 |
<!-- 加载动画,移除位置在common.js中 --> |
|
16 |
<div class="page-loading"> |
|
17 |
<div class="ball-loader"> |
|
18 |
<span></span><span></span><span></span><span></span> |
|
19 |
</div> |
|
20 |
</div> |
|
21 |
|
|
22 |
<div class="layui-card-body" style="text-align: center;"> |
|
23 |
<h2 style="margin-top: 170px;margin-bottom: 20px;font-size: 28px;color: #91ADDC;">欢迎使用${constants.getSystemName()}</h2> |
|
24 |
<img src="${ctxPath}/assets/common/images/welcome.png" style="max-width: 100%;"> |
|
25 |
</div> |
|
26 |
|
|
27 |
<!-- js部分 --> |
|
28 |
@/* 加入contextPath属性和session超时的配置 */ |
|
29 |
<script type="text/javascript"> |
|
30 |
var Feng = { |
|
31 |
ctxPath: "${ctxPath}", |
|
32 |
version: '${constants.getReleaseVersion()}' |
|
33 |
}; |
|
34 |
</script> |
|
35 |
<script type="text/javascript" src="${ctxPath}/assets/common/libs/layui/layui.js?v=${constants.getReleaseVersion()}"></script> |
|
36 |
<script type="text/javascript" src="${ctxPath}/assets/common/js/common.js?v=${constants.getReleaseVersion()}"></script> |
|
37 |
|
|
38 |
<script> |
|
39 |
layui.use(['layer'], function () { |
|
40 |
var $ = layui.jquery; |
|
41 |
var layer = layui.layer; |
|
42 |
}); |
|
43 |
</script> |
|
44 |
</body> |
|
45 |
|
|
46 |
</html> |