|
@@ -42,8 +42,8 @@ export default {
|
|
|
},
|
|
|
// 单位
|
|
|
units: {
|
|
|
- type: Array,
|
|
|
- default: () => ["(万KWh)", "(风速)"],
|
|
|
+ type: String,
|
|
|
+ default: "",
|
|
|
},
|
|
|
// 显示 legend
|
|
|
showLegend: {
|
|
@@ -114,52 +114,7 @@ export default {
|
|
|
return [];
|
|
|
}
|
|
|
},
|
|
|
- ydata() {
|
|
|
- let result = [];
|
|
|
- this.units.forEach((value, index) => {
|
|
|
- let data = null;
|
|
|
- if (index == 0) {
|
|
|
- data = {
|
|
|
- type: "value",
|
|
|
- name: value,
|
|
|
- axisLabel: {
|
|
|
- formatter: "{value} ",
|
|
|
- fontSize: 12,
|
|
|
- textStyle: {
|
|
|
- color: "#828484",
|
|
|
- },
|
|
|
- },
|
|
|
- //分格线
|
|
|
- splitLine: {
|
|
|
- lineStyle: {
|
|
|
- color: "rgba(96,103,105,0.3)",
|
|
|
- type: "dashed",
|
|
|
- },
|
|
|
- },
|
|
|
- };
|
|
|
- } else {
|
|
|
- data = {
|
|
|
- type: "value",
|
|
|
- name: value,
|
|
|
- axisLabel: {
|
|
|
- formatter: "{value}",
|
|
|
- fontSize: 12,
|
|
|
- textStyle: {
|
|
|
- color: "#828484",
|
|
|
- },
|
|
|
- },
|
|
|
- //分格线
|
|
|
- splitLine: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- result.push(data);
|
|
|
- });
|
|
|
|
|
|
- return result;
|
|
|
- },
|
|
|
series() {
|
|
|
let result = [];
|
|
|
if (this.showkey == "electric") {
|
|
@@ -172,8 +127,6 @@ export default {
|
|
|
itemStyle: {
|
|
|
borderColor: this.color[index],
|
|
|
borderWidth: 1,
|
|
|
- // shadowBlur: 1,
|
|
|
- // shadowColor: "#16ADD4",
|
|
|
},
|
|
|
data: value.value,
|
|
|
};
|
|
@@ -185,9 +138,6 @@ export default {
|
|
|
name: this.list[0].name,
|
|
|
type: "bar",
|
|
|
barWidth: "12",
|
|
|
- label: {
|
|
|
- show: true,
|
|
|
- },
|
|
|
itemStyle: {
|
|
|
borderColor: this.color[0],
|
|
|
borderWidth: 1,
|
|
@@ -198,136 +148,6 @@ export default {
|
|
|
}
|
|
|
return result;
|
|
|
},
|
|
|
- colorList() {
|
|
|
- let result = [
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#1c99ff" }, // 设置颜色渐变
|
|
|
- { offset: 1, color: "rgba(0,70,212,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#DC143C" }, // 设置颜色渐变
|
|
|
- { offset: 1, color: "rgba(255,105,180,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#ea8b00" },
|
|
|
- { offset: 1, color: "rgba(168,83,0,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
-
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#696969" },
|
|
|
- { offset: 1, color: "rgba(211,211,211,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#ff5378" },
|
|
|
- { offset: 1, color: "rgba(167,17,49,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#05bb4c" },
|
|
|
- { offset: 1, color: "rgba(0,75,11,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- ];
|
|
|
- let result1 = [
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#DC143C" }, // 设置颜色渐变
|
|
|
- { offset: 1, color: "rgba(255,105,180,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#ea8b00" },
|
|
|
- { offset: 1, color: "rgba(168,83,0,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
-
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#696969" },
|
|
|
- { offset: 1, color: "rgba(211,211,211,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#ff5378" },
|
|
|
- { offset: 1, color: "rgba(167,17,49,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "linear",
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- { offset: 0, color: "#05bb4c" },
|
|
|
- { offset: 1, color: "rgba(0,75,11,0)" },
|
|
|
- ],
|
|
|
- },
|
|
|
- ];
|
|
|
- return this.colorIndex ? result1 : result;
|
|
|
- },
|
|
|
},
|
|
|
methods: {
|
|
|
resize() {
|
|
@@ -337,14 +157,6 @@ export default {
|
|
|
let chart = echarts.init(this.$el);
|
|
|
let option = {
|
|
|
color: this.color,
|
|
|
-
|
|
|
- title: {
|
|
|
- text: this.pillarName,
|
|
|
- textStyle: {
|
|
|
- color: "#999999",
|
|
|
- fontSize: 18,
|
|
|
- },
|
|
|
- },
|
|
|
zoom: 12,
|
|
|
tooltip: {
|
|
|
trigger: "axis",
|
|
@@ -354,8 +166,8 @@ export default {
|
|
|
borderColor: "#074EAD",
|
|
|
textStyle: {
|
|
|
color: "#fff",
|
|
|
- fontSize: 12,
|
|
|
- fontFamily: "Arial",
|
|
|
+ fontSize: 16,
|
|
|
+ fontFamily: "楷体",
|
|
|
fontWeight: "normal",
|
|
|
},
|
|
|
axisPointer: {
|
|
@@ -391,10 +203,6 @@ export default {
|
|
|
{
|
|
|
type: "category",
|
|
|
data: this.xdata,
|
|
|
- nameLocation: "center",
|
|
|
- axisPointer: {
|
|
|
- type: "shadow",
|
|
|
- },
|
|
|
axisLabel: {
|
|
|
interval: this.interval,
|
|
|
fontSize: 12,
|
|
@@ -404,7 +212,14 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
],
|
|
|
- yAxis: this.ydata,
|
|
|
+ yAxis: {
|
|
|
+ type: "value",
|
|
|
+ name: this.units,
|
|
|
+ //分格线
|
|
|
+ splitLine: {
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ },
|
|
|
series: this.series,
|
|
|
};
|
|
|
chart.clear();
|