This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
SXS20240115/SRC/iMES_PAD/module/moduleWIP/program/dashboard/workRecipe.html

16 lines
682 B
HTML
Raw Permalink Normal View History

2024-01-24 16:47:50 +08:00
<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>