| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- window.programMenuOnClick = function(data, url)
- {
- location.href = url.replace('%d', data.item.key);
- }
- window.renderCell = function(result, {col, row})
- {
- if(col.name === 'name')
- {
- if(row.data.delay > 0)
- {
- result[0].props.className = 'overflow-hidden';
- result[result.length] = {html:'<span class="label danger-pale ml-1 flex-none nowrap">' + delayWarning.replace('%s', row.data.delay) + '</span>', className:'flex items-end', style:{flexDirection:"column"}};
- }
- return result;
- }
- if(col.name === 'invested')
- {
- result[result.length] = {html:'<span class="text-gray text-xs">' + langManDay + '</span>'};
- return result;
- }
- return result;
- }
- $(document).off('click', '#table-project-browse .batch-btn').on('click', '#table-project-browse .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);
- }).off('click', '#actionBar .export').on('click', '#actionBar .export', function()
- {
- const dtable = zui.DTable.query($('#table-project-browse'));
- const checkedList = dtable ? dtable.$.getChecks() : [];
- if(!checkedList.length) return;
- $.cookie.set('checkedItem', checkedList, {expires:config.cookieLife, path:config.webRoot});
- });
- $(document).off('click', '.switchButton').on('click', '.switchButton', function()
- {
- var projectType = $(this).attr('data-type');
- $.cookie.set('projectType', projectType, {expires:config.cookieLife, path:config.webRoot});
- loadCurrentPage();
- });
- $(document).on('click', 'input[name=involved]', function()
- {
- var involved = $(this).is(':checked') ? 1 : 0;
- $.cookie.set('involved', involved, {expires:config.cookieLife, path:config.webRoot});
- loadTable();
- });
- /**
- * 提示并删除项目。
- * Delete project with tips.
- *
- * @param int projectID
- * @param string projectName
- * @access public
- * @return void
- */
- window.confirmDelete = function(projectID, projectName)
- {
- zui.Modal.confirm({message: confirmDeleteTip.replace('%s', projectName), icon:'icon-exclamation-sign', iconClass: 'warning-pale rounded-full icon-2x'}).then((res) =>
- {
- if(res) $.ajaxSubmit({url: $.createLink('project', 'delete', 'projectID=' + projectID)});
- });
- }
- window.changeProgram = function()
- {
- const programID = $('input[name=programID]').val();
- const link = $.createLink('project', 'browse', 'programID=' + programID + '&browseType=' + browseType + '¶m=' + param + '&orderBy=order_asc&recTotal=' + recTotal + '&recPerPage=' + recPerPage + '&pageID=' + pageID);
- loadPage(link);
- }
|