271 lines
6.5 KiB
Vue
271 lines
6.5 KiB
Vue
<template>
|
||
<div style="flex: 1">
|
||
<Container :name="name" icon="cockpitItemIcon" size="operatingBasic" topSize="middle">
|
||
<!-- 1. 移除 .kpi-content 的固定高度,改为自适应 -->
|
||
<div class="kpi-content" style="padding: 14px 16px; display: flex;flex-direction: column; width: 100%;">
|
||
<!-- 2. .top 保持 flex,无需固定高度,自动跟随子元素拉伸 -->
|
||
<div style="display: flex; width: 100%; background-color: rgba(249, 252, 255, 1);">
|
||
<costBaseBarChart :formattedList="formattedList" :seriesData="seriesData" :name="'消耗量' " :xData="xData" />
|
||
</div>
|
||
</div>
|
||
</Container>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
import Container from '../container.vue'
|
||
// import * as echarts from 'echarts'
|
||
import costBaseBarChart from './costBaseBarChart.vue'
|
||
|
||
export default {
|
||
name: 'ProductionStatus',
|
||
components: { Container, costBaseBarChart },
|
||
// mixins: [resize],
|
||
props: {
|
||
consumptionList: {
|
||
type: Array,
|
||
default: () => []
|
||
},
|
||
name: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
dateData: {
|
||
type: Object,
|
||
default: () => ({})
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
formattedList: [], // 格式化后的完整数据(含处理后的time)
|
||
seriesData: [], // value数组
|
||
xData: [] // 新增:存储格式化后的时间数组
|
||
}
|
||
},
|
||
watch: {
|
||
'dateData.mode': {
|
||
handler() {
|
||
this.formatList()
|
||
},
|
||
immediate: true
|
||
},
|
||
consumptionList: {
|
||
handler() {
|
||
this.formatList()
|
||
},
|
||
deep: true
|
||
}
|
||
},
|
||
mounted() {
|
||
// 初始化图表(若需展示图表,需在模板中添加对应 DOM)
|
||
// this.$nextTick(() => this.updateChart())
|
||
},
|
||
methods: {
|
||
formatList() {
|
||
const { mode } = this.dateData
|
||
const flatList = this.consumptionList.flat().filter(item => item.time) // 扁平化+过滤无效数据
|
||
|
||
// 处理数据:同时提取formattedTime、value
|
||
this.formattedList = flatList.map(item => ({
|
||
...item,
|
||
formattedTime: this.formatTime(item.time, mode)
|
||
}))
|
||
|
||
// 提取value数组(原逻辑不变)
|
||
this.seriesData = this.formattedList.map(item => item.value)
|
||
|
||
// 新增:提取格式化后的时间到timeArray(与valueArray顺序一一对应)
|
||
this.xData = this.formattedList.map(item => item.formattedTime)
|
||
},
|
||
|
||
formatTime(timestamp, mode) {
|
||
const date = new Date(timestamp)
|
||
const padZero = (num) => num.toString().padStart(2, '0')
|
||
|
||
switch (mode) {
|
||
case 1:
|
||
// mode=1:时分秒(HH:MM:SS)
|
||
return `${padZero(date.getHours())}:${padZero(date.getMinutes())}:${padZero(date.getSeconds())}`
|
||
case 2:
|
||
// mode=2:月日(MM-DD)
|
||
return `${padZero(date.getMonth() + 1)}-${padZero(date.getDate())}`
|
||
case 3:
|
||
// mode=3:年(YYYY)
|
||
return date.getFullYear().toString()
|
||
default:
|
||
return `${padZero(date.getMonth() + 1)}-${padZero(date.getDate())}`
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang='scss' scoped>
|
||
/* 3. 核心:滚动容器样式(固定高度+溢出滚动+隐藏滚动条) */
|
||
.scroll-container {
|
||
/* 1. 固定容器高度:根据页面布局调整(示例300px,超出则滚动) */
|
||
max-height: 210px;
|
||
/* 2. 溢出滚动:内容超出高度时显示滚动功能 */
|
||
overflow-y: auto;
|
||
/* 3. 隐藏横向滚动条(防止设备名过长导致横向滚动) */
|
||
overflow-x: hidden;
|
||
/* 4. 内边距:与标题栏和容器边缘对齐 */
|
||
padding: 10px 0;
|
||
|
||
/* 5. 隐藏滚动条(兼容主流浏览器) */
|
||
/* Chrome/Safari */
|
||
&::-webkit-scrollbar {
|
||
display: none;
|
||
}
|
||
|
||
/* Firefox */
|
||
scrollbar-width: none;
|
||
/* IE/Edge */
|
||
-ms-overflow-style: none;
|
||
}
|
||
|
||
/* 设备项样式优化:增加间距,避免拥挤 */
|
||
.proBarInfo {
|
||
display: flex;
|
||
flex-direction: column;
|
||
padding: 8px 27px;
|
||
/* 调整内边距,优化排版 */
|
||
margin-bottom: 10px;
|
||
/* 设备项之间的垂直间距 */
|
||
}
|
||
|
||
/* 原有样式保留,优化细节 */
|
||
.proBarInfoEqInfo {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
/* 垂直居中,避免序号/文字错位 */
|
||
}
|
||
|
||
.slot {
|
||
width: 21px;
|
||
height: 23px;
|
||
background: rgba(0, 106, 205, 0.22);
|
||
backdrop-filter: blur(1.5px);
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 16px;
|
||
color: #68B5FF;
|
||
line-height: 23px;
|
||
/* 垂直居中文字 */
|
||
text-align: center;
|
||
font-style: normal;
|
||
}
|
||
|
||
.eq-name {
|
||
margin-left: 8px;
|
||
/* 增加与序号的间距 */
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 16px;
|
||
color: #FFFFFF;
|
||
line-height: 18px;
|
||
letter-spacing: 1px;
|
||
text-align: left;
|
||
font-style: normal;
|
||
}
|
||
|
||
.eqStatus {
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 16px;
|
||
color: #FFFFFF;
|
||
line-height: 18px;
|
||
text-align: right;
|
||
font-style: normal;
|
||
}
|
||
|
||
.splitLine {
|
||
width: 1px;
|
||
height: 14px;
|
||
border: 1px solid #ADADAD;
|
||
margin: 0 8px;
|
||
/* 优化分割线间距 */
|
||
}
|
||
|
||
.yield {
|
||
height: 18px;
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 16px;
|
||
color: #00FFFF;
|
||
line-height: 18px;
|
||
text-align: right;
|
||
font-style: normal;
|
||
}
|
||
|
||
.proBarInfoEqInfoLeft {
|
||
display: flex;
|
||
align-items: center;
|
||
/* 序号和设备名垂直居中 */
|
||
}
|
||
|
||
.proBarInfoEqInfoRight {
|
||
display: flex;
|
||
align-items: center;
|
||
/* 状态/分割线/百分比垂直居中 */
|
||
}
|
||
|
||
.proBarWrapper {
|
||
position: relative;
|
||
height: 10px;
|
||
margin-top: 6px;
|
||
/* 进度条与上方信息的间距 */
|
||
border-radius: 5px;
|
||
/* 进度条圆角,优化视觉 */
|
||
overflow: hidden;
|
||
}
|
||
|
||
.proBarLine {
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(65deg, rgba(82, 82, 82, 0) 0%, #ACACAC 100%);
|
||
opacity: 0.2;
|
||
}
|
||
|
||
.proBarLineTop {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
height: 100%;
|
||
background: linear-gradient(65deg, rgba(53, 223, 247, 0) 0%, rgba(54, 220, 246, 0.92) 92%, #36F6E5 100%, #37ACF5 100%);
|
||
border-radius: 5px;
|
||
transition: width 0.3s ease;
|
||
/* 进度变化时添加过渡动画,更流畅 */
|
||
}
|
||
|
||
/* 图表相关样式保留 */
|
||
.chartImgBottom {
|
||
position: absolute;
|
||
bottom: 45px;
|
||
left: 58px;
|
||
}
|
||
|
||
.line {
|
||
display: inline-block;
|
||
position: absolute;
|
||
left: 57px;
|
||
bottom: 42px;
|
||
width: 1px;
|
||
height: 20px;
|
||
background-color: #00E8FF;
|
||
}
|
||
</style>
|
||
|
||
<style>
|
||
/* 全局 tooltip 样式(不使用 scoped,确保生效) */
|
||
.production-status-chart-tooltip {
|
||
background: #0a2b4f77 !important;
|
||
border: none !important;
|
||
backdrop-filter: blur(12px);
|
||
}
|
||
|
||
.production-status-chart-tooltip * {
|
||
color: #fff !important;
|
||
}
|
||
</style>
|