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

15 lines
642 B
HTML
Raw Normal View History

2024-01-24 16:47:50 +08:00
<div class=" workEquipment">
<!--標題區域-->
<label class="dashboard-title" ng-bind="'dashboard.workEquipment.title' | translate"></label>
<!--內容區域-->
<div class="kmi-layout-page" ng-repeat="item in dashboard['workEquipment'].equipment_info_detail track by $index">
<div class="table-content">
<label ng-bind="item.MACHINE_NO"></label>
<div class="state">
<div class="color-block" style="background-color:rgb({{item.STATE_COLOR}})"></div>
<div class="stateName" ng-bind="item.MACHINE_STATE"></div>
</div>
</div>
</div>
</div>