* Finish task #40840.

This commit is contained in:
tianshujie98
2021-08-03 09:16:24 +08:00
parent 02a4add87c
commit 9f04b9540d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ $(function()
$('#cancel').click(function()
{
$('#isChangeUnit').val(false);
$('#isChangeUnit').val('false');
$('#exchangeRate').val('');
})
@@ -64,7 +64,7 @@ $(function()
return false;
}
$('#isChangeUnit').val(true);
$('#isChangeUnit').val('true');
$('#exchangeRate').val(exchangeRate);
$('#changeUnitTip').modal('hide');
})
+1 -1
View File
@@ -54,7 +54,7 @@
<?php else:?>
<span class='input-group-addon'></span>
<?php echo html::select('budgetUnit', $budgetUnitList, $program->budgetUnit, "class='form-control'");?>
<?php echo html::hidden('isChangeUnit', false);?>
<?php echo html::hidden('isChangeUnit', 'false');?>
<?php echo html::hidden('exchangeRate', '');?>
<?php endif;?>
</div>