diff --git a/packages/bigscreen/dv/AppQxnDv.vue b/packages/bigscreen/dv/AppQxnDv.vue
index 01700e7a..9a88af46 100644
--- a/packages/bigscreen/dv/AppQxnDv.vue
+++ b/packages/bigscreen/dv/AppQxnDv.vue
@@ -99,7 +99,6 @@
@@ -112,7 +111,6 @@
@@ -123,7 +121,6 @@
@@ -907,8 +904,6 @@
}
})
}
-
- this.lineData9 = res.data.tagInfo
}
})
diff --git a/ui/packages/tools/AiEchartV2.vue b/ui/packages/tools/AiEchartV2.vue
index 3745db99..6b817dce 100644
--- a/ui/packages/tools/AiEchartV2.vue
+++ b/ui/packages/tools/AiEchartV2.vue
@@ -59,7 +59,7 @@ export default {
colors = this.theme === '1' ? this.colors : (options.color || this.colors),
legend = {textStyle: {color: '#fff', padding: [0, 0, 0, 8], fontSize: 14}, show: false},
series = data?.[0] ? Array(Object.keys(data?.[0]).length - 1).fill(1)
- .map((e, i) => ({type, ...(typeof style == 'object' ? style : style(colors[i]))})) : []
+ .map((e, i) => ({type, ...daemon, ...(typeof style == 'object' ? style : style(colors[i]))})) : []
return {
tooltip: {},
xAxis: {
@@ -99,7 +99,7 @@ export default {
top: '26px',
containLabel: true
},
- legend, series: {...daemon, ...series}, ...options,
+ legend, series, ...options,
color: colors
}
},