77 lines
2.4 KiB
PHP
77 lines
2.4 KiB
PHP
<?php
|
||
/**
|
||
* 登录日志
|
||
**/
|
||
include("../includes/common.php");
|
||
$title='登录日志';
|
||
include './head.php';
|
||
if($islogin==1){}else exit("<script language='javascript'>window.location.href='./login.php';</script>");
|
||
?>
|
||
<div class="container" style="padding-top:70px;">
|
||
<div class="col-md-12 center-block" style="float: none;">
|
||
<form onsubmit="return searchSubmit()" method="GET" class="form-inline" id="searchToolbar">
|
||
<div class="form-group">
|
||
<label>搜索</label>
|
||
<select name="column" class="form-control"><option value="uid">商户号</option><option value="ip">操作IP</option></select>
|
||
</div>
|
||
<div class="form-group">
|
||
<input type="text" class="form-control" name="value" placeholder="搜索内容(0为管理员)">
|
||
</div>
|
||
<button type="submit" class="btn btn-primary">搜索</button>
|
||
<a href="javascript:searchClear()" class="btn btn-default" title="刷新登录日志"><i class="fa fa-refresh"></i></a>
|
||
</form>
|
||
|
||
<table id="listTable">
|
||
</table>
|
||
</div>
|
||
</div>
|
||
<script src="<?php echo $cdnpublic?>layer/3.1.1/layer.min.js"></script>
|
||
<script src="../assets/js/bootstrap-table.min.js"></script>
|
||
<script src="../assets/js/bootstrap-table-page-jump-to.min.js"></script>
|
||
<script src="../assets/js/custom.js"></script>
|
||
<script>
|
||
$(document).ready(function(){
|
||
updateToolbar();
|
||
const defaultPageSize = 30;
|
||
const pageNumber = typeof window.$_GET['pageNumber'] != 'undefined' ? parseInt(window.$_GET['pageNumber']) : 1;
|
||
const pageSize = typeof window.$_GET['pageSize'] != 'undefined' ? parseInt(window.$_GET['pageSize']) : defaultPageSize;
|
||
|
||
$("#listTable").bootstrapTable({
|
||
url: 'ajax_user.php?act=logList',
|
||
pageNumber: pageNumber,
|
||
pageSize: pageSize,
|
||
classes: 'table table-striped table-hover table-bordered',
|
||
columns: [
|
||
{
|
||
field: 'id',
|
||
title: 'ID',
|
||
formatter: function(value, row, index) {
|
||
return '<b>'+value+'</b>';
|
||
}
|
||
},
|
||
{
|
||
field: 'uid',
|
||
title: '商户号',
|
||
formatter: function(value, row, index) {
|
||
return value>0?'<a href="./ulist.php?column=uid&value='+value+'" target="_blank">'+value+'</a>':'管理员';
|
||
}
|
||
},
|
||
{
|
||
field: 'type',
|
||
title: '操作类型'
|
||
},
|
||
{
|
||
field: 'ip',
|
||
title: '操作IP',
|
||
formatter: function(value, row, index) {
|
||
return '<a href="https://m.ip138.com/iplookup.asp?ip='+value+'" target="_blank" rel="noreferrer">'+value+'</a>';
|
||
}
|
||
},
|
||
{
|
||
field: 'date',
|
||
title: '时间'
|
||
}
|
||
],
|
||
})
|
||
})
|
||
</script>
|