新增用户ID列表获取方法

This commit is contained in:
wanggeng 2021-10-22 10:04:41 +08:00
parent 2762403eef
commit d9ed9d8638
2 changed files with 1 additions and 5 deletions

View File

@ -177,7 +177,6 @@
// 重载表格 // 重载表格
function reloadTable(currentPage) { function reloadTable(currentPage) {
table.reload('dataTable', { table.reload('dataTable', {
url: top.restAjax.path(tableUrl, [teamId]),
where: { where: {
keywords: $('#keywords').val(), keywords: $('#keywords').val(),
startTime: $('#startTime').val(), startTime: $('#startTime').val(),
@ -186,7 +185,6 @@
page: { page: {
curr: currentPage curr: currentPage
}, },
height: $win.height() - 60,
}); });
} }
// 初始化日期 // 初始化日期

View File

@ -64,7 +64,7 @@
id: 'dataTable', id: 'dataTable',
url: top.restAjax.path(tableUrl, [teamId]), url: top.restAjax.path(tableUrl, [teamId]),
width: admin.screen() > 1 ? '100%' : '', width: admin.screen() > 1 ? '100%' : '',
height: $win.height() - 15, height: $win.height() - 20,
limit: 20, limit: 20,
limits: [20, 40, 60, 80, 100, 200], limits: [20, 40, 60, 80, 100, 200],
toolbar: '#headerToolBar', toolbar: '#headerToolBar',
@ -220,7 +220,6 @@
// 重载表格 // 重载表格
function reloadTable(currentPage) { function reloadTable(currentPage) {
table.reload('dataTable', { table.reload('dataTable', {
url: top.restAjax.path(tableUrl, [teamId]),
where: { where: {
keywords: $('#keywords').val(), keywords: $('#keywords').val(),
startTime: $('#startTime').val(), startTime: $('#startTime').val(),
@ -229,7 +228,6 @@
page: { page: {
curr: currentPage curr: currentPage
}, },
height: $win.height() - 15,
}); });
} }
// 初始化日期 // 初始化日期