$(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 url = $(this).data('url');
const form = new FormData();
checkedList.forEach((id) =>
{
form.append('case[]', id);
form.append('version[]', $('#version' + id).val());
});
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])
{
const testcase = info.row.data;
let html = "";
result[0] = {html};
}
return result;
}