16 lines
682 B
HTML
16 lines
682 B
HTML
<div class="workRecipe">
|
|
<!--標題-->
|
|
<label class="dashboard-title" ng-bind="dashboard.workRecipe.title | translate"></label>
|
|
|
|
<!--內容-->
|
|
<div class="recipe" ng-repeat="item in dashboard['workRecipe'].machine_Recipe track by $index">
|
|
<div class="row">
|
|
<div class="kmi-bar" style="background: linear-gradient(to right, rgb(0, 128, 0) {{item.PARAMETERVALUE}}%, rgb(238,241,247) {{item.PARAMETERVALUE}}%);">
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<label ng-bind="item.ELEMENTNAME"></label>
|
|
<label class="right" ng-bind="(item.PARAMETERVALUE | number) + '%'"></label>
|
|
</div>
|
|
</div>
|
|
</div> |