videolist.html
1.08 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
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="utf-8">
<head th:include="include :: header">
</head>
<body class="gray-bg">
<div class="col-sm-12" style="height: auto;">
<div class="select-info" style="height: 100%;">
<div class="panel panel-info">
<div class="panel-body">
<div class="panel-collapse " style="margin-top: 10px" >
<ul th:each="e:${list}" >
<li style="height: 25px;">
<a th:text="${e.fileName}" th:onclick="openView([[${e.id}]])"></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--<div style="width: 500px",height="500px">-->
<!-- <video src="http://127.0.0.1:8888/wms/profile/file/123.mp4" controls="controls"></video>-->
<!-- <h3>hahah</h3>-->
<!--</div>-->
</body>
<div th:include="include :: footer"></div>
<script >
function openView(id) {
$.modal.openFull("视频", ctx+"tool/video/lookVideo?id="+id)
}
</script>
</html>