allocatr/application/admin/view/dashboard/kpi_presale.html
2025-06-05 23:26:21 +08:00

30 lines
853 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="panel panel-default panel-intro">
<div class="panel-heading">
<h1>KPI面板</h1>
</div>
<div class="panel-body">
<div class="row">
</div>
<table class="table table-striped">
<thead>
<tr>
<th>姓名</th>
<th>录单数</th>
<th>录单业绩</th>
<th>提成比例固定3%</th>
<th>提成</th>
</tr>
</thead>
<tbody>
<tr>
<td>{$adminname|htmlentities}</td>
<td>{$data['total']|htmlentities}</td>
<td>{$data['money']|htmlentities}</td>
<td>3%</td>
<td>{$data['my_money']|htmlentities}</td>
</tr>
</tbody>
</table>
</div>
</div>