* Adjust code style of bug module.

This commit is contained in:
tianshujie
2021-11-30 14:44:48 +08:00
parent 508d7d78bf
commit 03cb9122ef
+5 -2
View File
@@ -665,8 +665,11 @@ function setBranchRelated(branchID, productID, num)
if(config.currentMethod == 'batchedit')
{
planID = $('#plans' + num).val();
planID = $('#plans' + num).val();
planLink = createLink('product', 'ajaxGetPlans', 'productID=' + productID + '&branch=' + branchID + '&planID=' + planID + '&fieldID=' + num + '&needCreate=false&expired=&param=skipParent');
$('#plans' + num).parent('td').load(planLink, function(){$('#plans' + num).chosen();});
$('#plans' + num).parent('td').load(planLink, function()
{
$('#plans' + num).chosen();
});
}
}