Files
EasySoft-ZenTaoPMS/module/testsuite/js/linkcase.ui.js
T

57 lines
1.5 KiB
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 url = $(this).data('url');
const form = new FormData();
checkedList.forEach((id) =>
{
form.append('cases[]', id);
form.append('versions[' + id + ']', $("[name='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 += "<a href='" + $.createLink('testcase', 'view', "caseID=" + testcase.id + "&version=" + i) + "' data-toggle='modal' data-size='lg'>#" + i + "</a>";
}
html += ')';
result.push({html});
}
if(info.col.name == 'version' && result[0])
{
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;
}