index.html
1.7 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
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="javascript:;">所有字段</a></li>
</ul>
<form class="js-ajax-form" action="" method="post">
<table class="table table-hover table-bordered table-list">
<thead>
<tr>
<th width="50">ID</th>
<th>页面名称</th>
<th>二维码</th>
<th>页面地址</th>
<th width="130">生成时间</th>
</tr>
</thead>
<foreach name="list" item="vo">
<tr>
<td><b>{$vo.id}</b></td>
<td>{$vo.name}</td>
<td>
<a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo.qrcode)}');">
<i class="fa fa-photo fa-fw"></i>
</a>
</td>
<td><a href="{$vo.url}" target="_blank">查看页面</a></td>
<td>{:date('Y-m-d H:i',$vo.create_time)}</td>
</tr>
</foreach>
<tfoot>
<tr>
<th width="50">ID</th>
<th>页面名称</th>
<th>二维码</th>
<th>页面地址</th>
<th width="130">生成时间</th>
</tr>
</tfoot>
</table>
<ul class="pagination">{$page|default=''}</ul>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
<script>
function reloadPage(win) {
win.location.reload();
}
</script>
</body>
</html>