detail.html
2.78 KB
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
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
    <th:block th:include="include :: header"/>
    <th:block th:include="include :: datetimepicker-css"/>
    <style>
        .mylabel{
            text-align: right;
        }
        .red{
            color:red;
        }
        .green{
            color:green;
        }
        .hideCopy{
            display: none;
        }
    </style>
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
    <div class="" id="form-apilog-edit" th:object="${taskProcess}">
        <div class="">
            <label class="col-sm-2 mylabel">ID:</label>
            <label class="col-sm-10" th:text="${taskProcess.getId()}"></label>
        </div>
        <div class="">
            <label class="col-sm-2 mylabel">请求内容:</label>
            <div class="col-sm-9"><pre id="reqBody" style="white-space: pre-wrap;"  th:text="${taskProcess.getRequestBody()}"></pre></div>
            <div class="col-sm-1 "><a class="btn btn-success btn-xs" th:classappend="${#strings.isEmpty(taskProcess.getRequestBody())}?' hideCopy':''" href="javacript:void(0);" onclick="copy('reqBody')">复制</a></div>
        </div>
        <div class="">
            <label class="col-sm-2 mylabel">响应内容:</label>
            <div class="col-sm-9"><pre id="respBody" style="white-space: pre-wrap;" th:text="${taskProcess.getResponseBody()}"></pre></div>
            <div class="col-sm-1 "><a class="btn btn-success btn-xs" th:classappend="${#strings.isEmpty(taskProcess.getResponseBody())}?' hideCopy':''" href="javacript:void(0);" onclick="copy('respBody')">复制</a></div>
        </div>
    </div>
</div>
<th:block th:include="include :: footer"/>
<th:block th:include="include :: datetimepicker-js"/>
<script th:inline="javascript">
    var prefix = ctx + "apilog/apilog";
    function parseJson(obj){
        var str = obj.innerHTML
        try {
            str = JSON.parse(str);
            obj.innerHTML = JSON.stringify(str, null, 2);
        }catch (e) {
            str = str.split("&").join("
")
            obj.innerHTML = str;
        }
    }
    parseJson(document.getElementById("reqBody"))
    parseJson(document.getElementById("respBody"))
    function copy(id) {
        var obj = document.getElementById(id)
        if(obj.innerHTML == "")
            return;
        let transfer = document.createElement('textarea');
        document.body.appendChild(transfer);
        transfer.value = obj.innerHTML;
        // transfer.focus();
        transfer.select();
        if (document.execCommand('copy')) {
            document.execCommand('copy');
        }
        transfer.blur();
        document.body.removeChild(transfer);
        $.modal.alertSuccess("复制成功");
    }
</script>
</body>
</html>