czt
2025-06-03 4901f0cf60ecc6484d149ca5e9a0083e4b21db21
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
<!DOCTYPE html>
<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="renderer" content="webkit">
    <title>视频预览</title>
 
    <link rel="stylesheet" th:href="@{/ajax/libs/layui/css/layui.css}"/>
    <style type="text/css">
        .layui-card-header {
            font-weight: bold;
            background-color: #39aef5;
            color: #FFF;
        }
 
        .layui-card-body {
            text-align: center;
        }
 
        thead span {
            font-weight: bold
        }
 
        .video {
            width: 100%;;
            height: 100%;
        }
    </style>
</head>
<body>
<!-- 可追踪信息 -->
<div class="layui-tab-content">
    <div class="layui-fluid" id="recordFilesDiv">
        <div class="layui-col-md12 layui-col-sm12">
            <div class="layui-card">
                <div class="layui-card-body">
                    <img th:src="${imgPath}" style="height: 100%;width: 100%">
                </div>
            </div>
        </div>
    </div>
</div>
<script th:src="@{/js/jquery.min.js}"></script>
<script th:src="@{/ajax/libs/layui/layui.js}"></script>
<script>
</script>
</body>
</html>