#
vincent
2020-05-30 0aa7e5ed02e0a4e1742628b898963cdd0b1e6933
#
1个文件已修改
8 ■■■■ 已修改文件
src/main/webapp/views/pipeline.html 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/pipeline.html
@@ -470,6 +470,8 @@
</footer>
</body>
<script>
    var outputDom = document.getElementById("output");
    // 空白表格渲染
    $(document).ready(function() {
        var one = $('#plc-error-table thead').height();
@@ -487,8 +489,12 @@
        $('#plc-error-table tbody').after(html);
    });
    // plc异常输入
    function addPlcError(val) {
    }
    // 日志输出框
    var outputDom = document.getElementById("output");
    function output(content){
        outputDom.value += content;
        outputDom.scrollTop = outputDom.scrollHeight;