allocatr/application/admin/view/dashboard/kpi.html
2025-05-22 15:52:45 +08:00

34 lines
695 B
HTML

<style>
</style>
<div class="row">
<h2>{$kpi_template->name|htmlentities}</h2>
</div>
<table class="table table-striped">
<thead>
<tr>
<th>指标名称</th>
<th>目标值</th>
<th>目标值(单位)</th>
<th>指标描述</th>
<th>权重</th>
</tr>
</thead>
<tbody>
{foreach $kpi_items as $key => $item}
<tr>
<td>{$item->name|htmlentities}</td>
<td>{$item->target_value|htmlentities}</td>
<td>{$item->unit_text|htmlentities}</td>
<td>{$item->desc|htmlentities}</td>
<td>{$item->pivot->rate|htmlentities}</td>
</tr>
{/foreach}
</tbody>
</table>
<div class="row">
</div>