allocatr/application/admin/view/dashboard/kpi_presale.html
2025-06-25 18:01:08 +08:00

26 lines
683 B
HTML

<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>
</tr>
</thead>
<tbody>
<tr>
<td>{$adminname|htmlentities}</td>
<td>{$data['total']|htmlentities}</td>
<td>{$data['money']|htmlentities}</td>
</tr>
</tbody>
</table>
</div>
</div>