88 lines
3.6 KiB
PHP
88 lines
3.6 KiB
PHP
{extend name="public/base" /}
|
|
{block name='content'}
|
|
{include file='public/content_header' /}
|
|
<!--数据列表页面-->
|
|
<section class="content">
|
|
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box">
|
|
|
|
<!--数据列表顶部-->
|
|
|
|
<div class="box-header">
|
|
<div>
|
|
<a title="添加" data-toggle="tooltip" class="btn btn-primary btn-sm " href="{:url('add')}">
|
|
<i class="fa fa-plus"></i> 添加
|
|
</a>
|
|
<a class="btn btn-success btn-sm ReloadButton" data-toggle="tooltip" title="刷新">
|
|
<i class="fa fa-refresh"></i> 刷新
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box-body table-responsive">
|
|
<table class="table table-hover table-bordered datatable" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>内容</th>
|
|
<th>状态</th>
|
|
<th>开始时间</th>
|
|
<th>结束时间</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach name='data' id='item' key='data_key'}
|
|
<tr>
|
|
<td>{$item.id}</td>
|
|
<td>{$item.context}</td>
|
|
<td>{$item.status}</td>
|
|
<td>{$item.starttime}</td>
|
|
<td>{$item.endtime}</td>
|
|
<td class="td-do">
|
|
|
|
<a class="btn btn-danger btn-xs AjaxButton" data-toggle="tooltip" title="删除"
|
|
data-id="{$item.id}" data-confirm-title="删除确认"
|
|
data-confirm-content='您确定要删除ID为 <span class="text-red">{$item.id}</span> 的数据吗'
|
|
data-url="{:url('del')}">
|
|
<i class="fa fa-trash"></i>
|
|
</a>
|
|
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- 数据列表底部 -->
|
|
<div class="box-footer">
|
|
{$page|raw}
|
|
<label class="control-label pull-right" style="margin-right: 10px; font-weight: 100;">
|
|
<small>共{$total}条记录</small>
|
|
<small>每页显示</small>
|
|
|
|
<select class="input-sm" onchange="changePerPage(this)">
|
|
<option value="10" {if $admin.per_page==10}selected{/if}>10</option>
|
|
<option value="20" {if $admin.per_page==20}selected{/if}>20</option>
|
|
<option value="30" {if $admin.per_page==30}selected{/if}>30</option>
|
|
<option value="50" {if $admin.per_page==50}selected{/if}>50</option>
|
|
<option value="100" {if $admin.per_page==100}selected{/if}>100</option>
|
|
</select>
|
|
|
|
<small>条记录</small>
|
|
</label>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/block}
|
|
|