This commit is contained in:
Yagami
2020-08-26 16:59:10 +08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
.block-cmmireport .col-right .tile .tile-title{font-weight: 700;}
.block-cmmireport .progress {position: absolute; left: 45px; top: 90px; right: 40px;}
.block-cmmireport .progress-num{font-size: 26px; font-weight: 700}
.block-cmmireport .col-right .tile-amount{font-size: 26px; font-weight: 700}
.block-cmmireport .col-right .tile-amount{font-size: 22px; font-weight: 700}
</style>
<div class="panel-move-handler"><span class='stage text-muted'><?php echo $current;?></span></div>

View File

@@ -143,7 +143,7 @@
<?php echo html::backButton();?>
<?php
echo html::hidden('template', $template);
echo html::hidden('parent', $parentProgram->id);
echo html::hidden('parent', isset($parentProgram->id) ? $parentProgram->id : 0);
?>
</td>
</tr>
@@ -181,5 +181,5 @@
</div>
</div>
<?php js::set('template', $template);?>
<?php js::set('parentProgramID', $parentProgram->id);?>
<?php js::set('parentProgramID', isset($parentProgram->id) ? $parentProgram->id : 0);?>
<?php include '../../common/view/footer.html.php';?>