* Change export data and class.

This commit is contained in:
caoyanyi
2023-06-27 09:20:44 +08:00
parent 0090c120aa
commit 6204ec4aaa
6 changed files with 32 additions and 8 deletions
+7
View File
@@ -16,4 +16,11 @@ $(document).off('click','.batch-btn').on('click', '.batch-btn', function()
{
postAndLoadPage(url, form);
}
}).off('click', '#actionBar .export').on('click', '#actionBar .export', function()
{
const dtable = zui.DTable.query($('#table-execution-all'));
const checkedList = dtable.$.getChecks();
if(!checkedList.length) return;
$.cookie.set('checkedItem', checkedList);
});