$(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 formData = dtable.$.getFormData(); const url = $(this).data('url'); const form = new FormData(); checkedList.forEach((id) => { form.append('cases[]', id); let key = 'version[' + id + ']'; form.append(key, formData[key]); }); if($(this).hasClass('ajax-btn')) { $.ajaxSubmit({url, data: form}); } else { postAndLoadPage(url, form); } }); /** * 对列进行重定义。 * Redefine the column. * * @param array result * @param array info * @access public * @return string|array */ window.renderCell = function(result, info) { if(info.col.name == 'title' && result[0]) { const testcase = info.row.data; let html = '('; for(i = 1; i <= testcase.version; i++) { html += "#" + i + ""; } html += ')'; result.push({html}); } if(info.col.name == 'version' && result[0]) { result[0].children.props.required = true; if(info.row.data.version == 1) return result; let versions = []; for(i = 1; i <= info.row.data.version; i++) versions.push({'text': i, 'value': i}); result[0].children.props.items = versions; } return result; }