diff --git a/src/views/copilot/factoryData/components/BarChartBase.vue b/src/views/copilot/factoryData/components/BarChartBase.vue
index b54d83c..2e118e5 100644
--- a/src/views/copilot/factoryData/components/BarChartBase.vue
+++ b/src/views/copilot/factoryData/components/BarChartBase.vue
@@ -55,13 +55,35 @@ export default {
options: {
color: ["#FFD160", "#2760FF", "#12FFF5"],
grid: {
- left: "7%",
- right: "7%",
+ left: "6%",
+ right: "3%",
bottom: "15%",
top: "15%",
},
tooltip: {
trigger: "axis",
+ axisPointer: {
+ // type: "cross",
+ crossStyle: {
+ color: "rgba(237,237,237,0.5)",
+ },
+ },
+ extraCssText: 'box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.38); border- radius: 4px;opacity: 0.6;backdrop- filter: blur(6px);',
+ backgroundColor: '#001829',
+ borderColor: '#001829',
+ formatter: params => {
+ console.log('params', params)
+ var res = ``;
+ for (var i = 0, l = params.length; i < l; i++) {
+ let color = Object.prototype.toString.call(params[i].color) == "[object String]" ? params[i].color : params[i].color.colorStops ? params[i].color.colorStops[0].color : ''
+ // console.log(item.color, color);
+ res +=
+ `` +
+ `${params[0].axisValueLabel}` +
+ `${params[i].value + '片'}`;
+ }
+ return res;
+ },
},
xAxis: {
axisTick: {
@@ -396,11 +418,11 @@ export default {
this.chart.dispose();
}
this.chart = echarts.init(document.getElementById("factoryEnergyChart"));
- const actualOptions = JSON.parse(JSON.stringify(this.options));
- actualOptions.xAxis.data = this.orderXAxis;
- actualOptions.series[0].data = this.data;
- this.actualOptions = actualOptions;
- this.chart.setOption(actualOptions);
+ // const actualOptions = JSON.parse(JSON.stringify(this.options));
+ this.options.xAxis.data = this.orderXAxis;
+ this.options.series[0].data = this.data;
+ // this.actualOptions = actualOptions;
+ this.chart.setOption(this.options);
},
},
};
diff --git a/src/views/copilot/factoryData/components/BarChartChipOEE.vue b/src/views/copilot/factoryData/components/BarChartChipOEE.vue
index 8d0ee7f..513c740 100644
--- a/src/views/copilot/factoryData/components/BarChartChipOEE.vue
+++ b/src/views/copilot/factoryData/components/BarChartChipOEE.vue
@@ -1,7 +1,7 @@
@@ -62,7 +62,59 @@ export default {
top: "15%",
containLabel: true,
},
- tooltip: {},
+ // tooltip: {
+ // trigger: "axis",
+ // axisPointer: {
+ // // type: "cross",
+ // crossStyle: {
+ // color: "rgba(237,237,237,0.5)",
+ // },
+ // },
+ // extraCssText: 'box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.38); border- radius: 4px;opacity: 0.6;backdrop- filter: blur(6px);',
+ // backgroundColor: '#001829',
+ // borderColor: '#001829',
+ // // textStyle: {
+ // // color:'rgba(255, 255, 255, 0.85)'
+ // // },
+ // formatter: params => {
+ // console.log('params', params)
+ // var res = `${params[0].axisValueLabel}`;
+ // for (var i = 0, l = params.length; i < l; i++) {
+ // res +=
+ // "
" +
+ // `` +
+ // `${params[i].seriesName}` +
+ // `${params[i].value}`;
+ // }
+ // return res;
+ // },
+ // },
+ tooltip: {
+ trigger: "axis",
+ axisPointer: {
+ // type: "cross",
+ crossStyle: {
+ color: "rgba(237,237,237,0.5)",
+ },
+ },
+ extraCssText: 'box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.38); border- radius: 4px;opacity: 0.6;backdrop- filter: blur(6px);',
+ backgroundColor: '#001829',
+ borderColor: '#001829',
+ formatter: params => {
+ console.log('params', params)
+ var res = `${params[0].axisValueLabel}`;
+ for (var i = 0, l = params.length; i < l; i++) {
+ let color = Object.prototype.toString.call(params[i].color) == "[object String]" ? params[i].color : params[i].color.colorStops ? params[i].color.colorStops[0].color : ''
+ // console.log(item.color, color);
+ res +=
+ "
" +
+ `` +
+ `${params[i].seriesName}` +
+ `${params[i].value + '片'}`;
+ }
+ return res;
+ },
+ },
xAxis: {
axisTick: {
show: false,
@@ -201,12 +253,12 @@ export default {
},
/** 全屏状态切换时,对柱子粗细和字体大小进行相应调整 */
isFullscreen(val) {
- this.actualOptions.series.map((item) => {
+ this.options.series.map((item) => {
item.barWidth = val ? 18 : 12;
});
- this.actualOptions.xAxis.axisLabel.fontSize = val ? 18 : 12;
- this.actualOptions.yAxis.axisLabel.fontSize = val ? 18 : 12;
- this.actualOptions.yAxis.nameTextStyle.fontSize = val ? 18 : 12;
+ this.options.xAxis.axisLabel.fontSize = val ? 18 : 12;
+ this.options.yAxis.axisLabel.fontSize = val ? 18 : 12;
+ this.options.yAxis.nameTextStyle.fontSize = val ? 18 : 12;
// if (val === false && this.isOpen === true) {
// console.log(val)
// this.width = 97 + '%'
@@ -221,7 +273,7 @@ export default {
// this.actualOptions.xAxis.axisLabel.fontSize = val ? 18 : 12;
// this.actualOptions.yAxis.axisLabel.fontSize = val ? 18 : 12;
// this.actualOptions.yAxis.nameTextStyle.fontSize = val ? 18 : 12;
- this.initChart(this.actualOptions)
+ this.initChart(this.options)
this.canvasReset()
},
series(val) {
@@ -231,16 +283,17 @@ export default {
}
// console.log('val', val)
const actualOptions = JSON.parse(JSON.stringify(this.options))
+ console.log(actualOptions);
// actualOptions.xAxis.data = val
console.log(actualOptions)
- actualOptions.series[0].data = val[0].data;
- actualOptions.series[0].name = val[0].name;
- actualOptions.series[1].data = val?.[1]?.data;
- actualOptions.series[1].name = val?.[1]?.name;
- actualOptions.series[2].data = val?.[2]?.data || [];
- actualOptions.series[2].name = val?.[2]?.name || "";
+ this.options.series[0].data = val[0].data;
+ this.options.series[0].name = val[0].name;
+ this.options.series[1].data = val?.[1]?.data;
+ this.options.series[1].name = val?.[1]?.name;
+ this.options.series[2].data = val?.[2]?.data || [];
+ this.options.series[2].name = val?.[2]?.name || "";
this.actualOptions = actualOptions;
- this.initChart(actualOptions);
+ this.initChart(this.options);
},
},
mounted() {
@@ -277,7 +330,7 @@ export default {
this.chart.dispose();
}
this.chart = echarts.init(this.$refs.oeeChart);
- this.chart.setOption(this.actualOptions);
+ this.chart.setOption(this.options);
},
},
};
@@ -289,8 +342,8 @@ export default {
.legend {
position: absolute;
- top: 5.2vh;
- right: 1vw;
+ top: 3vh;
+ right: 13vw;
}
.legend-item {
@@ -347,4 +400,8 @@ export default {
transform: translateY(-50%) translateX(50%);
}
}
+ .echarts-tooltip-dark {
+ background: #001829;
+
+ }
diff --git a/src/views/copilot/factoryData/components/Order.vue b/src/views/copilot/factoryData/components/Order.vue
index 9ea4ec6..5444e2d 100644
--- a/src/views/copilot/factoryData/components/Order.vue
+++ b/src/views/copilot/factoryData/components/Order.vue
@@ -8,7 +8,7 @@
工单情况
-