...
|
...
|
@@ -3,8 +3,7 @@ |
|
|
<body>
|
|
|
<div class="wrap js-check-wrap">
|
|
|
<ul class="nav nav-tabs">
|
|
|
<li class="active"><a href="javascript:;">设备列表</a></li>
|
|
|
<li><a href="{:url('AdminArticle/add')}">添加设备</a></li>
|
|
|
<li class="active"><a href="javascript:;">整体统计</a></li>
|
|
|
</ul>
|
|
|
<form class="well form-inline margin-top-20" method="post" action="{:url('AdminArticle/index')}">
|
|
|
分类:
|
...
|
...
|
@@ -26,19 +25,9 @@ |
|
|
<a class="btn btn-danger" href="{:url('AdminArticle/index')}">清空</a>
|
|
|
</form>
|
|
|
<form class="js-ajax-form" action="" method="post">
|
|
|
<div class="table-actions">
|
|
|
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"
|
|
|
data-action="{:url('AdminArticle/publish',array('yes'=>1))}" data-subcheck="true">批量新增
|
|
|
</button>
|
|
|
</div>
|
|
|
<table class="table table-hover table-bordered table-list">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th width="15">
|
|
|
<label>
|
|
|
<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
|
|
|
</label>
|
|
|
</th>
|
|
|
<th width="50">ID</th>
|
|
|
<th>设备MAC地址</th>
|
|
|
<th>设备锁编号</th>
|
...
|
...
|
@@ -55,10 +44,6 @@ |
|
|
</thead>
|
|
|
<foreach name="data" item="vo">
|
|
|
<tr>
|
|
|
<td>
|
|
|
<input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]"
|
|
|
value="{$vo.id}" title="ID:{$vo.id}">
|
|
|
</td>
|
|
|
<td><b>{$vo.id}</b></td>
|
|
|
<td>{$vo.mac_address}</td>
|
|
|
<td>{$vo.serial_number}</td>
|
...
|
...
|
@@ -69,41 +54,6 @@ |
|
|
</tr>
|
|
|
</foreach>
|
|
|
</table>
|
|
|
<!--<div class="table-actions">-->
|
|
|
<!--<notempty name="category">-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/listOrder')}">{:lang('SORT')}-->
|
|
|
<!--</button>-->
|
|
|
<!--</notempty>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/publish',array('yes'=>1))}" data-subcheck="true">发布-->
|
|
|
<!--</button>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/publish',array('no'=>1))}" data-subcheck="true">取消发布-->
|
|
|
<!--</button>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/top',array('yes'=>1))}" data-subcheck="true">置顶-->
|
|
|
<!--</button>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/top',array('no'=>1))}" data-subcheck="true">取消置顶-->
|
|
|
<!--</button>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/recommend',array('yes'=>1))}" data-subcheck="true">推荐-->
|
|
|
<!--</button>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/recommend',array('no'=>1))}" data-subcheck="true">取消推荐-->
|
|
|
<!--</button>-->
|
|
|
<!--<!–-->
|
|
|
<!--<notempty name="category">-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-articles-move" type="button">批量移动</button>-->
|
|
|
<!--</notempty>-->
|
|
|
<!--<button class="btn btn-primary btn-sm js-articles-copy" type="button">批量复制</button>-->
|
|
|
<!--–>-->
|
|
|
<!--<button class="btn btn-danger btn-sm js-ajax-submit" type="submit"-->
|
|
|
<!--data-action="{:url('AdminArticle/delete')}" data-subcheck="true" data-msg="您确定删除吗?">-->
|
|
|
<!--{:lang('DELETE')}-->
|
|
|
<!--</button>-->
|
|
|
<!--</div>-->
|
|
|
<ul class="pagination">{$page|default=''}</ul>
|
|
|
</form>
|
|
|
</div>
|
...
|
...
|
|