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/workTime.html

19 lines
746 B
HTML
Raw Permalink Normal View History

2024-01-24 16:47:50 +08:00
<div class="workTime">
<!--標題-->
<label class="dashboard-title"
ng-bind="(dashboard['workTime'].title | translate) + ' | ' + (dashboard['workTime'].machine_totla_time | number) + 'm'"></label>
<!--內容-->
<div class="time" ng-repeat="item in dashboard['workTime'].machine_utilization_rate_detail track by $index">
<div class="row">
<div class="kmi-bar" style="background: linear-gradient(to right, rgb({{item.STATE_COLOR}}) {{item.BAR}}%, rgb(238,241,247) 0%);">
</div>
</div>
<div class="row">
<label ng-bind="item.STATENAME"></label>
<label class="right" ng-bind="(item.WORK_TIME | number) + ' m'"></label>
</div>
</div>
</div>