34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
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>
|
|
<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->complete_value|htmlentities}</td>
|
|
<td>{$item->desc|htmlentities}</td>
|
|
<td>{$item->detail|htmlentities}</td>
|
|
<td>{$item->pivot->rate|htmlentities}%</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |