|
|
|
@ -133,7 +133,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="device-metrics"> |
|
|
|
<span class="metric">效率: {{ robot.efficiency }}%</span> |
|
|
|
<span class="metric"></span> |
|
|
|
<span class="metric">任务: {{ robot.tasks }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -278,18 +278,18 @@ export default { |
|
|
|
// 库位数据 |
|
|
|
storageData: { |
|
|
|
totalSlots: 1960,// 固定不变的 |
|
|
|
usedSlots: 1856, |
|
|
|
utilizationRate: 77.3, |
|
|
|
steelPallet: 680, |
|
|
|
guardPallet: 520, |
|
|
|
flatPallet: 656, |
|
|
|
otherPallet: 200 |
|
|
|
usedSlots: 0, |
|
|
|
utilizationRate: 0, |
|
|
|
steelPallet: 0, |
|
|
|
guardPallet: 0, |
|
|
|
flatPallet: 0, |
|
|
|
otherPallet: 0 |
|
|
|
}, |
|
|
|
|
|
|
|
// 机器人数据 |
|
|
|
robotData: [ |
|
|
|
{ id: 1, name: '机器人#1', status: 'working', statusText: '工作中', efficiency: 95, tasks: 2 }, |
|
|
|
{ id: 2, name: '机器人#2', status: 'working', statusText: '工作中', efficiency: 92, tasks: 2 } |
|
|
|
{ id: 2, name: '机器人#2', status: 'working', statusText: '工作中', efficiency: 92, tasks: 4 } |
|
|
|
], |
|
|
|
|
|
|
|
// AGV数据(从TUSK系统实时获取) |
|
|
|
|