| | |
| | | <template> |
| | | <div> |
| | | <PanelHeader title="在制品统计分析" /> |
| | | <PanelHeader title="在制品统计分析" to="/productionManagement/productionOrder" /> |
| | | <div class="main-panel panel-item-customers"> |
| | | <CarouselCards :items="cardItems" :visible-count="3" /> |
| | | <div class="chart-wrapper"> |
| | |
| | | workInProcessXAxis.value[0].data = [] |
| | | } |
| | | if (res.data.processQuantityDetails && Array.isArray(res.data.processQuantityDetails)) { |
| | | workInProcessBarSeries.value[0].data = res.data.processQuantityDetails |
| | | const colors = Array.isArray(res.data.processColors) ? res.data.processColors : [] |
| | | workInProcessBarSeries.value[0].data = res.data.processQuantityDetails.map((v, i) => |
| | | colors[i] ? { value: v, itemStyle: { color: colors[i] } } : v |
| | | ) |
| | | } else { |
| | | workInProcessBarSeries.value[0].data = [] |
| | | } |