leaflet.html
1.46 KB
<div class="main">
<div class="panel panel-default">
<div class="panel-heading">海报列表</div>
<div class="panel-body">
<div class="form-group">
<table class="table table-hover">
<thead class="navbar-inner">
<tr>
<th style="max-width:20px;">海报ID</th>
<th style="max-width:300px;">海报名称</th>
<th style="max-width:20px;">状态</th>
<th style="text-align:center; max-width:60px;">操作</th>
</tr>
</thead>
<tbody>
{loop $mylist $item}
<tr style="color:green">
<td>{$item['channel']}</td>
<td>{$item['title']}</td>
<td>{if $item['active']}使用中{/if}</td>
<td style="text-align:center;">
<a href="{php echo $this->CreateWebUrl('Spread', array('op' => 'active', 'channel'=>$item['channel']))}" title="设置为当前使用的海报" class="btn btn-default btn-sm"><i class="fa fa-heart"></i></a>
<a href="{php echo $this->CreateWebUrl('Spread', array('op' => 'post', 'channel'=>$item['channel']))}" title="编辑" class="btn btn-default btn-sm"><i class="fa fa-edit"></i></a>
<a href="{php echo $this->CreateWebUrl('Spread', array('op' => 'delete', 'channel'=>$item['channel']))}" title="删除" onclick="return confirm('此操作不可恢复,确定?');return false;" class="btn btn-default btn-sm"><i class="fa fa-remove"></i></a>
</td>
</tr>
{/loop}
</tbody>
</table>
{$pager}
</div>
</div>
</div>
</div>