当前登录:
| 角色:
| 选择下方工位开始操作
'fa-sign-in',
'pcb_test' => 'fa-microchip',
'battery' => 'fa-battery-full',
'assembly' => 'fa-cogs',
'finished_test' => 'fa-check-circle',
'warehouse' => 'fa-warehouse',
'delivery' => 'fa-truck',
'document_manage' => 'fa-folder-open',
];
$iconColors = [
'inbound' => ['#10ac84', 'rgba(16,172,132,0.2)'],
'pcb_test' => ['#0abde3', 'rgba(10,189,227,0.2)'],
'battery' => ['#feca57', 'rgba(254,202,87,0.2)'],
'assembly' => ['#a29bfe', 'rgba(162,155,254,0.2)'],
'finished_test' => ['#55efc4', 'rgba(85,239,196,0.2)'],
'warehouse' => ['#fd79a8', 'rgba(253,121,168,0.2)'],
'delivery' => ['#74b9ff', 'rgba(116,185,255,0.2)'],
'document_manage' => ['#e17055', 'rgba(225,112,85,0.2)'],
];
foreach ($stations as $station):
$type = $station['station_type'];
$icon = $stationIcons[$type] ?? 'fa-circle-o';
$color = $iconColors[$type] ?? ['#0abde3', 'rgba(10,189,227,0.2)'];
$disabled = $station['status'] == 0;
?>
>