✏️ 正在编辑: leads-faixa-renda.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-relatorios/leads-faixa-renda.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h2>Leads capturados por renda</h2> <div> <table> <thead> <tr class="top_list"> <td>Faixa de renda</td> <td>Quantidade</td> <td>(%)</td> </tr> </thead> <tbody> <?php if($this->rendas['total'] > 0): foreach ( $this->rendas['lista'] as $faixa ): ?> <tr> <td><?php echo $faixa['faixa']; ?></td> <td><?php echo $faixa['qtd']; ?></td> <td><?php echo number_format(($faixa['qtd'] / $qtdTotal) * 100, 2, ',', '.'); ?></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td colspan="3">Total de Leads: <?php echo $this->rendas['total']; ?></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器