Files
EasySoft-ZenTaoPMS/module/program/js/project.ui.js
T

32 lines
1016 B
JavaScript

$(document).on('click', '#involved', function()
{
var involved = $(this).prop('checked') ? 1 : 0;
$.cookie.set('involved', involved, {expires:config.cookieLife, path:config.webRoot});
loadCurrentPage();
});
window.confirmDelete = function(projectID, projectName)
{
zui.Modal.confirm({message: confirmDeleteTip.replace('%s', projectName), icon:'icon-info-sign', iconClass: 'warning-pale rounded-full icon-2x'}).then((res) =>
{
if(res) $.ajaxSubmit({url: $.createLink('project', 'delete', 'projectID=' + projectID)});
});
}
$(document).on('click', '.batch-btn', function()
{
const dtable = zui.DTable.query($(this).target);
const checkedList = dtable.$.getChecks();
if(!checkedList.length) return;
const form = new FormData();
const url = $(this).data('url');
checkedList.forEach((id) => form.append('projectIdList[]', id));
postAndLoadPage(url, form);
});
window.footerSummary = function(checkedIdList, pageSummary)
{
return {html: pageSummary};
}