From 0b868f7a638a1507b684d097b65ac60f215dbc24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 22 Jul 2021 15:12:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/view/oplog/index.html | 8 ++++++++ public/static/admin.js | 17 +++++++++-------- 2 files changed, 17 insertions(+), 8 deletions(-) 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 () {