This commit is contained in:
hufangzhou
2023-07-12 10:16:38 +08:00
parent 883e2a68d7
commit 76e5329522
2 changed files with 9 additions and 3 deletions
+2 -2
View File
@@ -308,10 +308,10 @@ function hidePlanBox(attribute)
else
{
$('.productsBox .planBox').removeClass('hide');
$('.productsBox .planBox select').attr('disabled', '');
$('.productsBox .planBox select').removeAttr('disabled');
$('#productTitle').text(manageProductPlanLang);
$('#plansBox').closest('tr').removeClass('hide');
$('#plansBox').attr('disabled', '');
$('#plansBox').removeAttr('disabled');
}
}
+7 -1
View File
@@ -117,7 +117,13 @@ $(function()
if(isWaterfall)
{
hidePlanBox(executionAttr);
$('#attribute').change(function()
{
var attribute = $(this).val();
hidePlanBox(attribute);
})
$('#attribute').change();
}
})
var lastProjectID = $("#project").val();