diff --git a/app/admin/view/oplog/index.html b/app/admin/view/oplog/index.html
index b30371e96..47e51695d 100644
--- a/app/admin/view/oplog/index.html
+++ b/app/admin/view/oplog/index.html
@@ -24,14 +24,22 @@
cols: [[
{checkbox: true},
{field: 'id', title: 'ID', width: 80, sort: true, align: 'center'},
+ {field: 'username', title: '操作账号', sort: true, align: 'center'},
{field: 'node', title: '操作节点', sort: true},
{field: 'action', title: '操作行为', sort: true},
{field: 'content', title: '操作描述', sort: false},
{field: 'geoip', title: '访问地址', sort: true},
{field: 'geoisp', title: '网络服务商', sort: false},
{field: 'create_at', title: '操作时间', sort: true},
+ {toolbar: '#toolbar', align: 'center'}
]]
});
});
+
+
{/block}
\ No newline at end of file
diff --git a/public/static/admin.js b/public/static/admin.js
index cb0177537..036ddd0b9 100644
--- a/public/static/admin.js
+++ b/public/static/admin.js
@@ -654,8 +654,6 @@ $(function () {
/*! 组件 LayUI table 功能封装 */
$.fn.layTable = function (options) {
return this.each(function (idx, elem) {
- // 拦截异常标签对象
- if (this.nodeName !== 'TABLE') return new Error('It is not a table tag.');
// 动态初始化数据表
this.id = this.id || 't' + Math.random().toString().replace('0.', '');
this.dataset.dataFilter = this.getAttribute('lay-filter') || this.id;
@@ -665,15 +663,18 @@ $(function () {
opt.id = elem.id, opt.elem = elem, opt.url = options.url || elem.dataset.url || location.href;
opt.page = options.page !== false, opt.limit = options.limit || 20, opt.cols = options.cols || [[]];
// 实例表格组件
- $(this).data('this', layui.table.render(bindData(opt)));
- // 绑定重载事件
- $(this).bind('reload', function (event, opts) {
- layui.table.reload(elem.id, bindData(opts || {}));
- });
+ var table = layui.table.render(bindData(opt));
+ table.bind = function (name, callable) {
+ return layui.table.on(name + '(' + elem.dataset.dataFilter + ')', callable), table;
+ }
// 排序事件处理
- layui.table.on('sort(' + this.dataset.dataFilter + ')', function (object) {
+ table.bind('sort', function (object) {
(sort = object), $(elem).trigger('reload')
});
+ // 绑定生成对象,绑定重载事件
+ $(this).data('this', table).bind('reload', function (event, opts) {
+ layui.table.reload(elem.id, bindData(opts || {}));
+ });
// 搜索表单处理
var search = options.search || this.dataset.targetSearch;
if (search) $body.off('submit', search).on('submit', search, function () {