地质所 沉降监测网建设项目
zmk
2024-05-16 6cc8b13ee47303a907f8e57b018406c46d8928e4
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
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
    <th:block th:include="include :: header('操作日志详细')" />
    <th:block th:include="include :: jsonview-css" />
</head>
<body class="white-bg">
    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
    <form class="form-horizontal m-t" id="signupForm">
        <div class="form-group">
            <label class="col-sm-2 control-label">操作模块:</label>
            <div class="form-control-static" th:text="${operLog.title} + ' / ' + ${@dict.getLabel('sys_oper_type',operLog.businessType)}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">登录信息:</label>
            <div class="form-control-static" th:text="${operLog.operName} + ' / ' + ${operLog.deptName} + ' / ' + ${operLog.operIp}+ ' / ' + ${operLog.operLocation}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">请求地址:</label>
            <div class="form-control-static" th:text="${operLog.operUrl}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">请求方式:</label>
            <div class="form-control-static" th:text="${operLog.requestMethod}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">操作方法:</label>
            <div class="form-control-static" th:text="${operLog.method}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">请求参数:</label>
            <div class="form-control-static"><pre id="operParam"></pre></div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">返回参数:</label>
            <div class="form-control-static"><pre id="jsonResult"></pre></div>
        </div>
        <div class="form-group">
            <label class="col-sm-2 control-label">状态:</label>
            <div class="form-control-static" th:class="${operLog.status == 0 ? 'label label-primary' : 'label label-danger'}" th:text="${operLog.status == 0 ? '正常' : '异常'}">
            </div>
        </div>
        <div class="form-group" th:style="'display:' + ${operLog.status == 0 ? 'none' : 'block'}">
            <label class="col-sm-2 control-label">异常信息:</label>
            <div class="form-control-static" th:text="${operLog.errorMsg}">
            </div>
        </div>
    </form>
    </div>
    <th:block th:include="include :: footer" />
    <th:block th:include="include :: jsonview-js" />
    <script th:inline="javascript">
        $(function() {
            var operParam = [[${operLog.operParam}]];
            if ($.common.isNotEmpty(operParam) && operParam.length < 2000) {
                $("#operParam").JSONView(operParam);
            } else {
                $("#operParam").text(operParam);
            }
            var jsonResult = [[${operLog.jsonResult}]];
            if ($.common.isNotEmpty(jsonResult) && jsonResult.length < 2000) {
                $("#jsonResult").JSONView(jsonResult);
            } else {
                $("#jsonResult").text(jsonResult);
            }
        });
    </script>
</body>
</html>