diff --git a/src/views/kanban/Packagingline/index.vue b/src/views/kanban/Packagingline/index.vue index f275b0f..2bc161c 100644 --- a/src/views/kanban/Packagingline/index.vue +++ b/src/views/kanban/Packagingline/index.vue @@ -1015,22 +1015,39 @@ export default { }, { name: "计划产量", - data: [], - type: "bar", - showBackground: true, - backgroundStyle: { - color: "rgba(180, 180, 180, 0.2)", - }, + type: "line", + stack: "总量", + symbol: "circle", + symbolSize: 8, itemStyle: { normal: { - barBorderRadius: 5, - color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ - { offset: 0, color: "#66E1DF" }, - { offset: 1, color: "#005954" }, - ]), + color: "#88E4E3", + lineStyle: { + color: "#88E4E3", + width: 1, + }, }, }, + data: [], }, + // { + // name: "计划产量", + // data: [], + // type: "bar", + // showBackground: true, + // backgroundStyle: { + // color: "rgba(180, 180, 180, 0.2)", + // }, + // itemStyle: { + // normal: { + // barBorderRadius: 5, + // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ + // { offset: 0, color: "#66E1DF" }, + // { offset: 1, color: "#005954" }, + // ]), + // }, + // }, + // }, ], }; myChart6.setOption(option6);