后台批量操作bug修复

内核更新
This commit is contained in:
2016-07-11 12:03:55 +08:00
parent 195ec9417c
commit 6460d64ceb
19 changed files with 119 additions and 128 deletions
+1 -1
View File
@@ -34,7 +34,7 @@
{volist name="list" id="vo"}
<tr>
<td>
<input class="ids" type="checkbox" name="ids[]" value="{$vo.id}" />
<input class="ids" type="checkbox" name="id[]" value="{$vo['id']}" />
</td>
<td>{$vo.id}</td>
<td>{$vo.name}</td>
+1 -1
View File
@@ -29,7 +29,7 @@
<tbody>
{volist name="list" id="vo"}
<tr>
<td><input class="ids" type="checkbox" name="ids[]" value="{$vo['id']}" /></td>
<td><input class="ids" type="checkbox" name="id[]" value="{$vo['id']}" /></td>
<td>{$vo['id']} </td>
<td>{:get_action($vo['action_id'],'title')}</td>
<td>{:get_nickname($vo['user_id'])}</td>
+2
View File
@@ -34,6 +34,7 @@
<table class="table table-striped table-hover">
<thead>
<tr>
<th width="30"><input class="checkbox check-all" type="checkbox"></th>
<th width="60">ID</th>
<th>组名</th>
<th>标识</th>
@@ -45,6 +46,7 @@
<tbody>
{volist name="list" id="item"}
<tr>
<th width="30"><input class="ids row-selected" type="checkbox" name="id[]" value="{$item['id']}"></th>
<td>{$item['id']}</td>
<td>{$item['title']}</td>
<td>{$item['name']}</td>