BootstrapAdmin/Bootstrap.Admin/wwwroot/js/logs.js

23 lines
1.0 KiB
JavaScript
Raw Normal View History

2018-06-07 00:45:47 +08:00
$(function () {
var url = 'api/Logs';
2018-06-07 00:45:47 +08:00
2018-10-30 13:07:29 +08:00
$('.card-body table').smartTable({
2018-06-07 00:45:47 +08:00
url: url,
sortName: 'LogTime',
sortOrder: 'desc',
2018-06-07 00:45:47 +08:00
queryParams: function (params) { return $.extend(params, { operateType: $("#txt_operate_type").val(), OperateTimeStart: $("#txt_operate_start").val(), OperateTimeEnd: $("#txt_operate_end").val() }); },
columns: [
{ title: "操作类型", field: "CRUD", sortable: true },
{ title: "用户名称", field: "UserName", sortable: true },
{ title: "操作时间", field: "LogTime", sortable: true },
{ title: "登录主机", field: "Ip", sortable: true },
{ title: "操作地点", field: "City", sortable: true },
{ title: "浏览器", field: "Browser", sortable: true },
{ title: "操作系统", field: "OS", sortable: true },
{ title: "Url", field: "RequestUrl", sortable: true }
],
exportOptions: {
fileName: "操作日志数据"
}
2018-06-07 00:45:47 +08:00
});
});