You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
35 lines
1.4 KiB
define(["jquery", "easy-admin"], function ($, ea) {
|
|
|
|
|
|
var init = {
|
|
table_elem: '#currentTable',
|
|
table_render_id: 'currentTableRenderId',
|
|
index_url: 'system.log/index',
|
|
};
|
|
|
|
var Controller = {
|
|
index: function () {
|
|
var util = layui.util;
|
|
ea.table.render({
|
|
init: init,
|
|
toolbar: ['refresh'],
|
|
cols: [[
|
|
{field: 'id', width: 80, title: 'ID', search: false},
|
|
{field: 'month', title: '日志月份', hide: true, search: 'time', timeType: 'month', searchValue: util.toDateString(new Date(), 'yyyy-MM')},
|
|
{field: 'admin.username', minWidth: 80, title: '后台用户', search: false},
|
|
{field: 'method', minWidth: 80, title: '请求方法'},
|
|
{field: 'url', minWidth: 80, title: '路由地址'},
|
|
{field: 'title', minWidth: 80, title: '日志标题'},
|
|
{field: 'content', minWidth: 80, title: '操作内容'},
|
|
{field: 'ip', minWidth: 80, title: 'IP地址'},
|
|
{field: 'useragent', minWidth: 80, title: 'useragent'},
|
|
{field: 'create_time', minWidth: 80, title: '创建时间', search: 'range'},
|
|
]],
|
|
});
|
|
|
|
ea.listen();
|
|
},
|
|
};
|
|
|
|
return Controller;
|
|
});
|