* Finish task #60641.

This commit is contained in:
mayue
2022-07-11 15:26:14 +08:00
parent 5446bcf1f4
commit ea0500a20c
3 changed files with 13 additions and 2 deletions
+7
View File
@@ -127,4 +127,11 @@ $(function()
{
location.href = createLink('execution', 'cfd', 'executionID=' + executionID + '&type=' + $(this).val());
});
$('#weekend').click(function()
{
var type = $('#type').val();
withWeekend = withWeekend == 'true' ? 'false' : 'true';
location.href = createLink('execution', 'cfd', 'executionID=' + executionID + '&type=' + type + '&withWeekend=' + withWeekend);
});
});