127 lines
5.6 KiB
PHP
127 lines
5.6 KiB
PHP
{extend name="public/base" /}
|
|
{block name='content'}
|
|
{include file='public/content_header' /}
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box">
|
|
<div class="box-body">
|
|
<form class="form-inline searchForm" id="searchForm" action="{:url('index')}" method="GET">
|
|
<div class="form-group">
|
|
<input value="{$_keywords ? $_keywords : '' ;}"
|
|
name="_keywords" id="_keywords" class="form-control input-sm" placeholder="操作/URL/IP">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<select name="admin_user_id" id="admin_user_id" class="form-control input-sm">
|
|
<option value="">选择用户</option>
|
|
{foreach name='admin_user_list' id='item'}
|
|
<option value="{$item.id}"
|
|
{if isset($admin_user_id)&& $admin_user_id==$item.id}selected{/if}
|
|
>
|
|
{$item.nickname}[{$item.username}]
|
|
</option>
|
|
{/foreach}
|
|
</select>
|
|
</div>
|
|
<script>
|
|
$('#admin_user_id').select2({
|
|
width:'100%',
|
|
});
|
|
</script>
|
|
|
|
<div class="form-group">
|
|
<input readonly value="{$create_time ?? '' ;}"
|
|
name="create_time" id="create_time" class="form-control input-sm indexSearchDatetimeRange" placeholder="操作日期">
|
|
</div>
|
|
<script>
|
|
laydate.render({
|
|
elem: '#create_time'
|
|
,range: true
|
|
,type:'datetime'
|
|
});
|
|
</script>
|
|
|
|
<div class="form-group">
|
|
<button class="btn btn-sm btn-primary" type="submit"><i class="fa fa-search"></i> 查询
|
|
</button>
|
|
</div>
|
|
<div class="form-group">
|
|
<button onclick="clearSearchForm()" class="btn btn-sm btn-default" type="button"><i
|
|
class="fa fa-eraser"></i> 清空
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box">
|
|
<div class="box-body table-responsive">
|
|
<table class="table table-hover table-bordered datatable" width="100%">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>用户</th>
|
|
<th>操作</th>
|
|
<th>URL</th>
|
|
<th>请求方式</th>
|
|
<th>IP</th>
|
|
<th>日期</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{foreach name='data' id='item'}
|
|
<tr>
|
|
<td>{$item.id}</td>
|
|
<td>{$item->adminUser->nickname}</td>
|
|
<td>{$item.name}</td>
|
|
<td>{$item.url}</td>
|
|
<td>{$item.log_method}</td>
|
|
<td>{$item.log_ip}</td>
|
|
<td>{$item.create_time}</td>
|
|
<td class="td-do">
|
|
<a data-id="{$item.id}" data-url="view" data-confirm="2" data-type="2"
|
|
class="btn btn-default btn-xs AjaxButton" data-title="日志详情" title="查看详情" data-toggle="tooltip">
|
|
<i class="fa fa-eye"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- 数据列表底部 -->
|
|
<div class="box-footer">
|
|
{$page|raw}
|
|
<label class="control-label pull-right" style="margin-right: 10px; font-weight: 100;">
|
|
<small>共{$total}条记录</small>
|
|
<small>每页显示</small>
|
|
|
|
<select class="input-sm" onchange="changePerPage(this)">
|
|
<option value="10" {if $admin.per_page==10}selected{/if}>10</option>
|
|
<option value="20" {if $admin.per_page==20}selected{/if}>20</option>
|
|
<option value="30" {if $admin.per_page==30}selected{/if}>30</option>
|
|
<option value="50" {if $admin.per_page==50}selected{/if}>50</option>
|
|
<option value="100" {if $admin.per_page==100}selected{/if}>100</option>
|
|
</select>
|
|
|
|
<small>条记录</small>
|
|
</label>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/block}
|
|
|