123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <include file="public@header"/>
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <div class="panel">
- <div class="panel-body">
- <!--搜索面板-->
- <form class="js-search-form form-inline" method="get" action="{:url('deleteIndex')}">
- <div class="form-group">
- </div>
- <div class="form-group">
- <label class="control-label">{:lang('GAME_NAME')}</label>
- {$games_select}
- </div>
- <div class="form-group">
- {:filter_button()}
- {:filter_button_clear(url('deleteIndex'))}
- </div>
- </form>
- <form method="get" class="js-ajax-form" action="">
- <div class="table-actions" id="game_category-icons">
- <button class="btn btn-xs btn-primary js-ajax-submit"
- type="submit"
- data-action="{:url('resetPost')}">{:lang('RESTORE')}</button>
- </div>
- <table class="table table-hover table-bordered table-list treeTable" id="menus-table">
- <thead>
- <tr>
- <th width="10">
- <label>
- <input type="checkbox" class="js-check-all" data-direction="x"
- data-checklist="js-check-x">
- </label>
- </th>
- <th width="50">{:LANG('GAME_ID')}</th>
- <th width="50">{:lang('GAME_NAME')}</th>
- <th width="50">{:lang('CP_NAME')}</th>
- <th width="50">{:LANG('DELETE_TIME')}</th>
- <th width="100">{:lang('ACTIONS')}</th>
- </tr>
- </thead>
- <tbody>
- <foreach name="items" 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}">
- </td>
- <td>{$vo.id}</td>
- <td class="text-left" style="text-indent: 10px;">
- <notempty name="vo['icon']">
- {:cmf\\view\\Index::img($vo['icon'])}
- </notempty>
- {$vo.name}
- <notempty name="vo['classify']">
- -{$classifies[$vo['classify']]}
- </notempty>
- </td>
- <td>
- <empty name="cps[$vo['cp_id']]">
- --
- <else/>
- {$cps[$vo['cp_id']]}
- </empty>
- </td>
- <td>{:view_time($vo.delete_time)}</td>
- <td>
- <div class="action-buttons">
- {:cmf\\view\\Index::link(url('resetPost',['id'=>$vo['id']]), lang('RESTORE'), 'undo', 'js-ajax-dialog-btn', lang('CONFIRM').lang('RESTORE').'?','','primary')}
- </div>
- </td>
- </tr>
- </if>
- </foreach>
- </if>
- </tbody>
- </table>
- <div class="pagination">{$page}</div>
- </form>
- </div>
- </div>
- </div>
- <include file="public@footer"/>
|