修改动态表单问题

This commit is contained in:
wenc000 2020-02-27 15:50:02 +08:00
parent c8c4c492fb
commit fb0d072626

View File

@ -212,7 +212,7 @@
}); });
} }
// 重载表格 // 重载表格
function reloadTable() { function reloadTable(currentPage) {
table.reload('dataTable', { table.reload('dataTable', {
url: top.restAjax.path(tableUrl, []), url: top.restAjax.path(tableUrl, []),
where: { where: {
@ -221,7 +221,7 @@
endTime: $('#endTime').val() endTime: $('#endTime').val()
}, },
page: { page: {
curr: 1 curr: currentPage
}, },
height: $win.height() - 90, height: $win.height() - 90,
}); });
@ -271,7 +271,7 @@
}); });
// 事件 - 搜索 // 事件 - 搜索
$(document).on('click', '#search', function() { $(document).on('click', '#search', function() {
reloadTable(); reloadTable(1);
}); });
// 事件 - 增删改 // 事件 - 增删改
table.on('toolbar(dataTable)', function(obj) { table.on('toolbar(dataTable)', function(obj) {