Update admin.js

This commit is contained in:
邹景立 2021-08-19 19:06:20 +08:00
parent f5f592e019
commit ebe84e585e

View File

@ -696,7 +696,7 @@ $(function () {
this.elem.next().find('[data-load],[data-queue],[data-action]').not('[data-table-id]').attr('data-table-id', elem.id);
}, opt.parseData = function (res) {
var maxPage = Math.ceil(res.count / this.limit), curPage = layui.sessionData('pages')[opt.id] || 1;
if (curPage > maxPage) this.elem.trigger('reload', {page: {curr: maxPage}});
if (curPage > maxPage && curPage > 1) this.elem.trigger('reload', {page: {curr: maxPage}});
};
// 实例并绑定的对象
$(this).data('this', layui.table.render(bindData(opt)));