|
|
@ -154,6 +154,10 @@ |
|
|
<span class="summary-label">利用率(不包含空托盘)</span> |
|
|
<span class="summary-label">利用率(不包含空托盘)</span> |
|
|
<span class="summary-value rate">{{ ((storageData.usedSlots)*100/1960).toFixed(2) }}%</span> |
|
|
<span class="summary-value rate">{{ ((storageData.usedSlots)*100/1960).toFixed(2) }}%</span> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="summary-item"> |
|
|
|
|
|
<span class="summary-label">栈板位利用率</span> |
|
|
|
|
|
<span class="summary-value rate">{{ (storageData.utilizationRate2).toFixed(2) }}%</span> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div id="storageChart" style="margin-left: 70px" class="chart-container"></div> |
|
|
<div id="storageChart" style="margin-left: 70px" class="chart-container"></div> |
|
|
</div> |
|
|
</div> |
|
|
@ -329,6 +333,7 @@ export default { |
|
|
storageData: { |
|
|
storageData: { |
|
|
totalSlots: 1960,// 固定不变的 |
|
|
totalSlots: 1960,// 固定不变的 |
|
|
usedSlots: 0, |
|
|
usedSlots: 0, |
|
|
|
|
|
utilizationRate2: 0, |
|
|
utilizationRate: 0, |
|
|
utilizationRate: 0, |
|
|
// 物料盘库存(按托盘类型分类) |
|
|
// 物料盘库存(按托盘类型分类) |
|
|
materialInventory: { |
|
|
materialInventory: { |
|
|
|