✏️ 正在编辑: taxas-transferencia.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/banco/taxas-transferencia.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Taxas de transferência</h1> <div id="view-content"> <?php if ($this->bancos): ?> <form method="post"> <button type="submit" class="bt_save" style="margin: 5px;">Atualizar taxas</button> <table summary="Bancos"> <thead> <tr class="top_list"> <th width="50">Código</th> <th width="350">Nome</th> <th>Taxa trasnf.</th> </tr> </thead> <tbody> <?php foreach ($this->bancos as $banco): ?> <tr> <td><?php echo $banco->codigo; ?></td> <td><?php echo $banco->nome; ?></td> <td> R$ <input type="text" name="taxas[<?php echo $banco->id; ?>]" value="<?php echo $this->toFloat($banco->taxa_transf); ?>" onkeypress="mascara(this, mvalor)" maxlength="5" style="width:50px;"> </td> </tr> <?php endforeach; ?> </tbody> </table> <button type="submit" class="bt_save" style="margin: 5px;">Atualizar taxas</button> </form> <?php endif; ?> </div> <br><br>
💾 保存文件
← 返回文件管理器