index.html
3.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
60
61
62
63
64
65
66
67
68
69
70
71
72
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="{:url('SlideItem/index',['slide_id'=>$slide_id])}">幻灯片页面列表</a></li>
<li><a href="{:url('SlideItem/add',['slide_id'=>$slide_id])}">添加幻灯片页面</a></li>
</ul>
<form method="post" class="js-ajax-form margin-top-20" action="{:url('SlideItem/listOrder')}">
<div class="table-actions">
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit">{:lang('SORT')}</button>
</div>
<php>
$status = [
'隐藏',
'开启'
];
</php>
<table class="table table-hover table-bordered">
<thead>
<tr>
<th width="50">{:lang('SORT')}</th>
<th width="50">ID</th>
<th>幻灯片标题</th>
<th>描述</th>
<th>链接</th>
<th>图片</th>
<th>状态</th>
<th width="160">{:lang('ACTIONS')}</th>
</tr>
</thead>
<tbody>
<foreach name="result" item="vo">
<tr>
<td>
<input name="list_orders[{$vo.id}]" class="input-order" type="text" value="{$vo.list_order}">
</td>
<td>{$vo.id}</td>
<td>{$vo.title}</td>
<td>{$description = mb_substr($vo['description'], 0, 48,'utf-8')}</td>
<td>{$vo.url}</td>
<td>
<if condition="!empty($vo['image'])">
<a href="javascript:imagePreviewDialog('{:cmf_get_image_preview_url($vo.image)}');">
<i class="fa fa-photo fa-fw"></i>
</a>
</if>
</td>
<td>{$status[$vo['status']]}</td>
<td>
<a href="{:url('SlideItem/edit',array('id'=>$vo['id']))}">{:lang('EDIT')}</a>
<a href="{:url('SlideItem/delete',array('id'=>$vo['id']))}"
class="js-ajax-delete">{:lang('DELETE')}</a>
<if condition="empty($vo['status']) eq 1">
<a href="{:url('SlideItem/cancelban',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn"
data-msg="确定显示此幻灯片吗?">{:lang('DISPLAY')}</a>
<else/>
<a href="{:url('SlideItem/ban',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn"
data-msg="确定隐藏此幻灯片吗?">{:lang('HIDE')}</a>
</if>
</td>
</tr>
</foreach>
</tbody>
</table>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>