12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <include file="public@header" />
- </head>
- <body>
- <div class="wrap">
- <ul class="nav nav-tabs">
- <li class="active"><a >列表</a></li>
- <li><a href="{:url('Liveclass/add')}">{:lang('ADD')}</a></li>
- </ul>
- <form method="post" class="js-ajax-form" action="{:url('Liveclass/listOrder')}">
- <div class="table-actions">
- <button class="btn btn-primary btn-sm js-ajax-submit" type="submit">{:lang('SORT')}</button>
- </div>
-
- <table class="table table-hover table-bordered">
- <thead>
- <tr>
- <th>排序</th>
- <th>ID</th>
- <th>名称</th>
- <th>图标</th>
- <th>描述</th>
- <th>{:lang('ACTIONS')}</th>
- </tr>
- </thead>
- <tbody>
- <foreach name="lists" 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['name']}</td>
- <td><if condition="$vo['thumb'] neq '' "><img width="25" height="25" class="imgtip" src="{:get_upload_path($vo['thumb'])}" /></if></td>
- <td style="max-width: 200px;">{$vo['des']}</td>
- <td>
- <a class="btn btn-xs btn-primary" href='{:url("Liveclass/edit",array("id"=>$vo["id"]))}'>{:lang('EDIT')}</a>
- <a class="btn btn-xs btn-danger js-ajax-delete" href="{:url('Liveclass/del',array('id'=>$vo['id']))}">{:lang('DELETE')}</a>
- </td>
- </tr>
- </foreach>
- </tbody>
- </table>
- <div class="pagination">{$page}</div>
- </form>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- </body>
- </html>
|