Files
EasySoft-ZenTaoPMS/module/execution/js/importtask.ui.js
T

12 lines
375 B
JavaScript

$(document).off('click','.batch-btn').on('click', '.batch-btn', function()
{
const dtable = zui.DTable.query($(this).target);
const checkedList = dtable.$.getChecks();
if(!checkedList.length) return;
const form = new FormData();
checkedList.forEach((id) => form.append('taskIdList[]', id));
$.ajaxSubmit({url: $(this).data('url'), data: form});
});