CN-103 曲线无数据时应显示no data

This commit is contained in:
hyx
2021-08-23 10:33:13 +08:00
parent be61fa9d8b
commit d5cdcb6838

View File

@@ -310,7 +310,8 @@ export default {
this.singleValue.value = response.data.result this.singleValue.value = response.data.result
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
if (this.isSingleValueWithEcharts) { // 带曲线的单值图 if (this.isSingleValueWithEcharts) { // 带曲线的单值图
const dom = document.getElementById(`chart${this.chartInfo.id}`) const dom = document.getElementById(`chart${this.chartInfo.id}`)
@@ -332,7 +333,8 @@ export default {
}) })
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
this.myChart.setOption(this.chartOption) this.myChart.setOption(this.chartOption)
this.$nextTick(() => { this.$nextTick(() => {
@@ -518,7 +520,8 @@ export default {
} }
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
}).finally(() => { }).finally(() => {
setTimeout(() => { this.loading = false }, 250) setTimeout(() => { this.loading = false }, 250)
@@ -627,7 +630,8 @@ export default {
} }
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
this.myChart.setOption(this.chartOption) this.myChart.setOption(this.chartOption)
this.$nextTick(() => { this.$nextTick(() => {
@@ -744,7 +748,8 @@ export default {
}) })
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true;
this.errorInfo = response.msg||response.message||'Unknown';
} }
this.myChart.setOption(this.chartOption) this.myChart.setOption(this.chartOption)
this.$nextTick(() => { this.$nextTick(() => {
@@ -802,13 +807,15 @@ export default {
this.pieTableData = response2.data.result this.pieTableData = response2.data.result
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
}) })
} }
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
}).finally(() => { }).finally(() => {
setTimeout(() => { this.loading = false }, 250) setTimeout(() => { this.loading = false }, 250)
@@ -879,7 +886,8 @@ export default {
this.table.currentPageData = this.getTargetPageData(1, this.table.pageSize, this.table.tableData) this.table.currentPageData = this.getTargetPageData(1, this.table.pageSize, this.table.tableData)
}else { }else {
this.isError = true; this.isError = true;
this.errorInfo = response.msg; this.noData = true
this.errorInfo = response.msg||response.message||'Unknown';
} }
}).finally(() => { }).finally(() => {
setTimeout(() => { this.loading = false }, 250) setTimeout(() => { this.loading = false }, 250)