|
@@ -115,7 +115,9 @@ export default {
|
|
|
const data = []
|
|
|
res.data.filter(item => data.push({ time: item.createdTime, value: item.result, type: this.remoteOpc.sbName }))
|
|
|
this.dataList = data
|
|
|
- this.createChart(this.dataList)
|
|
|
+ if (this.dataList != null && this.dataList.length > 0) {
|
|
|
+ this.createChart(this.dataList)
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
createChart (data) {
|