懒羊羊
2023-08-30 71e81ed1d12e4d69f53c8ad9e066650ad4186293
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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("/common/_header.html"){}
 
    <!-- 侧边栏 -->
    @include("/common/_sidebar.html"){}
 
    <!-- 主体部分 -->
    @include("/common/_body.html"){}
 
    <!-- 底部 -->
    @include("/common/_footer.html"){}
 
</div>
 
<!-- 加载动画,移除位置在common.js中 -->
@include("/common/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', 'ax'], function () {
        var $ = layui.jquery;
        var layer = layui.layer;
        var admin = layui.admin;
        var index = layui.index;
        var $ax = layui.ax;
 
        //获取支持的语言列表
        var ajax = new $ax(Feng.ctxPath + "/translation/languages", function (data) {
            for (var i = 0; i < data.data.length; i++) {
                var code = data.data[i].code;
                var description = data.data[i].description;
                $("#languageDiv").append('<dd lay-unselect><a id="tran-' + code + '" href="javascript:;">' + description + '</a></dd>');
 
                //设置监听事件,设置点击按钮切换当前系统语言
                (function (code) {
                    $('#tran-' + code).click(function () {
                        var ajax = new $ax(Feng.ctxPath + "/translation/changeUserTranslation", function (data) {
                            window.location.href = Feng.ctxPath + "/";
                        }, function (data) {
                            layer.msg("切换多语言失败!" + data.responseJSON.message, {icon: 5, anim: 6});
                        });
                        ajax.set("code", code);
                        ajax.start();
                    });
                })(code);
            }
        }, function (data) {
            layer.msg("获取语言列表失败!" + data.responseJSON.message, {icon: 5, anim: 6});
        });
        ajax.start();
 
        // 加载当前语言字典并缓存
        var getUserTranslationAjax = new $ax(Feng.ctxPath + "/translation/getUserTranslation", function (data) {
            layui.data('system', {
                key: "lang",
                value: data.data
            });
        }, function (data) {
            layer.msg("加载语言字典失败!" + data.responseJSON.message, {icon: 5, anim: 6});
        });
        getUserTranslationAjax.start();
 
        // 默认加载主页
        index.loadHome({
            menuPath: $("#firstPageAction").attr('lay-href'),
            menuName: '<i class="layui-icon layui-icon-home"></i>'
        });
 
        // 修改密码点击事件
        $('#setPsw').click(function () {
 
            //获取多语言
            var langs = layui.data('system').lang;
 
            admin.open({
                id: 'pswForm',
                type: 2,
                title: langs.MENU_CHANGE_PASSWORD,
                shade: 0,
                content: '${ctxPath}/system/user_chpwd'
            });
        });
 
        // 退出登录点击事件
        $('#btnLogout').click(function () {
            var ajax = new $ax(Feng.ctxPath + "/logout", function (data) {
                Feng.success("退出成功!");
                window.location.href = Feng.ctxPath + "/";
            }, function (data) {
                layer.msg("退出失败!" + data.responseJSON.message, {icon: 5, anim: 6});
            });
            ajax.start();
        });
    });
</script>
</body>
 
</html>