detail.html 2.78 KB
<!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("&amp;").join("&#10;")
            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>