mirror of https://gitee.com/stylefeng/guns
84 lines
2.7 KiB
HTML
84 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<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 href="${ctxPath}/assets/expand/images/favicon.ico" rel="icon">
|
||
<title>${constants.getSystemName()}</title>
|
||
<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 class="layui-layout-body">
|
||
|
||
<div class="layui-layout layui-layout-admin">
|
||
|
||
<!-- 头部 -->
|
||
@include("/layout/_header.html"){}
|
||
|
||
<!-- 侧边栏 -->
|
||
@include("/layout/_sidebar.html"){}
|
||
|
||
<!-- 主体部分 -->
|
||
@include("/layout/_body.html"){}
|
||
|
||
<!-- 底部 -->
|
||
@include("/layout/_footer.html"){}
|
||
|
||
</div>
|
||
|
||
<!-- 加载动画,移除位置在common.js中 -->
|
||
@include("/layout/loading.html"){}
|
||
|
||
@/* 加入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', 'element', 'admin', 'index', 'HttpRequest'], function () {
|
||
var $ = layui.jquery;
|
||
var layer = layui.layer;
|
||
var admin = layui.admin;
|
||
var index = layui.index;
|
||
var HttpRequest = layui.HttpRequest;
|
||
|
||
// 默认加载主页
|
||
index.loadHome({
|
||
menuPath: $("#firstPageAction").attr('lay-href'),
|
||
menuName: '<i class="layui-icon layui-icon-home"></i>'
|
||
});
|
||
|
||
// 修改密码点击事件
|
||
$('#setPsw').click(function () {
|
||
admin.open({
|
||
id: 'pswForm',
|
||
type: 2,
|
||
title: "修改密码",
|
||
shade: 0,
|
||
content: '${ctxPath}/view/changePassword'
|
||
});
|
||
});
|
||
|
||
// 退出登录点击事件
|
||
$('#btnLogout').click(function () {
|
||
var request = new HttpRequest(Feng.ctxPath + "/logout", 'post', function (data) {
|
||
Feng.success("退出成功!");
|
||
window.location.href = Feng.ctxPath + "/";
|
||
}, function (data) {
|
||
layer.msg("退出失败!" + data.message, {icon: 5, anim: 6});
|
||
});
|
||
request.start();
|
||
});
|
||
});
|
||
</script>
|
||
</body>
|
||
|
||
</html> |