index.html
2.0 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
53
54
55
56
57
58
59
<include file="public@header" />
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="{:url('about/index')}">关于我们</a></li>
</ul>
<form class="js-ajax-form" action="" method="post">
<table class="table table-hover table-bordered">
<div class="table-actions">
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
<!--data-action="{:url('Appraise/sort')}">{:lang('SORT')}-->
<!--</button>-->
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
<!--data-action="{:url('Appraise/publish',array('yes'=>1))}" data-subcheck="true">发布-->
<!--</button>-->
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
<!--data-action="{:url('Appraise/publish',array('no'=>1))}" data-subcheck="true">取消发布-->
<!--</button>-->
<!--<button class="btn btn-danger btn-sm js-ajax-submit"-->
<!--data-action="{:url('Logistics/delete')}" data-subcheck="true" data-msg="你确定删除吗?">-->
<!--{:lang('DELETE')}-->
<!--</button>-->
</div>
<thead>
<tr>
<!--<th width="20">ID</th>-->
<th width="20">缩略图</th>
<th width="50">页面内容</th>
<th width="30">更新时间</th>
<th width="30">操作</th>
</tr>
</thead>
<tbody>
<foreach name="data" item="vo">
<tr>
<!--<td>{$vo.id}</td>-->
<td>
<notempty name="$vo.thumbnail">
<a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo.thumbnail)}');">
<i class="fa fa-photo fa-fw"></i>
</a>
</notempty>
</td>
<td>{:cmf_replace_content_file_url(htmlspecialchars_decode($vo.content))}</td>
<td>{:date('Y-m-d H:i:s',$vo['update_time'])}</td>
<td>
<a href='{:url("about/edit",array("id"=>$vo["id"]))}'>{:lang('EDIT')}</a>
</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page|default=''}</div>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>