123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <div id="logs_jbsxBox" class="pageContent">
- <div class="pageHeader" style="border:1px #B8D0D6 solid">
- <form id="pagerSearchForm" onsubmit="return divSearch(this, 'logs_jbsxBox');"
- action="<!--{echo $domain_prefix}-->/?m=acp&c=logs&a=run"
- method="post">
- <input type="hidden" name="pageNum" value="1"/>
- <input type="hidden" name="numPerPage" value="<!--{echo $limit}-->"/>
- <input type="hidden" name="orderField" value="<!--{echo $order}-->"/>
- <input type="hidden" name="orderDirection" value="<!--{echo $direction=='desc'?'asc':'desc';}-->"/>
- <div class="searchBar">
- <table class="searchContent">
- <tr>
- <td>
- 类型:
- <input type="radio" name="status" value="" <!--{echo $status==0?'checked':''}--> />全部
- <input type="radio" name="status" value="1" <!--{echo $status==2?'checked':''}--> />登录
- <input type="radio" name="status" value="2" <!--{echo $status==3?'checked':''}--> />退出
- </td>
- <td>
- <div class="buttonActive">
- <div class="buttonContent">
- <button type="submit">筛选</button>
- </div>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </form>
- </div>
- <div class="pageContent">
- <div class="unitBox">
- <form id="pagerForm" onsubmit="return divSearch(this, 'logs_jbsxBox');"
- action="<!--{echo $domain_prefix}-->/?m=acp&c=logs&a=run"
- method="post">
- <input type="hidden" name="pageNum" value="1"/>
- <input type="hidden" name="numPerPage" value="${model.numPerPage}"/>
- <input type="hidden" name="orderField" value="${param.orderField}"/>
- <input type="hidden" name="orderDirection" value="${param.orderDirection}"/>
- <div class="pageContent" style="border-left:1px #B8D0D6 solid;border-right:1px #B8D0D6 solid">
- <table class="table" width="99%" layoutH="85" rel="logs_jbsxBox">
- <thead>
- <tr>
- <th width="80">ID</th>
- <th>用户名</th>
- <th>内容</th>
- <th>机器信息</th>
- <th>来源</th>
- <th>IP</th>
- <th>时间</th>
- <th>类型</th>
- </tr>
- </thead>
- <tbody>
- <!--{if(!empty($data)){}-->
- <!--{foreach ($data as $k => $v){}-->
- <tr target="user_id" rel="<!--{echo $v['id'];}-->">
- <td>
- <!--{echo $v['id'];}-->
- </td>
- <td><!--{echo $v['username'];}--></td>
- <td><!--{echo $v['content'];}--></td>
- <td><!--{echo $v['refer'];}--></td>
- <td><!--{echo $v['browser'];}--></td>
- <td><!--{echo $v['ip'];}--></td>
- <td><!--{echo $v['created'];}--></td>
- <td>
- <!--{echo $v['log_type']==1?'登入':'退出';}-->
- </td>
- </tr>
- <!--{}}-->
- <!--{}}-->
- </tbody>
- </table>
- <div class="panelBar">
- <div class="pages">
- <span>显示</span>
- <select class="combox" name="numPerPage"
- onchange="navTabPageBreak({numPerPage:this.value}, 'logs_jbsxBox')">
- <option value="10"
- <!--{echo $limit==10?'selected':''}-->>10</option>
- <option value="20"
- <!--{echo $limit==20?'selected':''}-->>20</option>
- <option value="50"
- <!--{echo $limit==50?'selected':''}-->>50</option>
- <option value="100"
- <!--{echo $limit==100?'selected':''}-->>100</option>
- </select>
- <span>共<!--{echo $counts}-->条</span>
- </div>
- <div class="pagination" rel="logs_jbsxBox" totalCount="<!--{echo $counts}-->"
- numPerPage="<!--{echo $limit}-->" pageNumShown="5"
- currentPage="<!--{echo $page}-->">
- </div>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
|