云平台自测问题修改

This commit is contained in:
guanj
2026-01-13 14:27:23 +08:00
parent e9d7231a75
commit 63433aa6dc
15 changed files with 790 additions and 729 deletions

View File

@@ -498,9 +498,9 @@ const range = (start: any, end: any, step: any) => {
const colors = ['#DAA520', '#2E8B57', '#A52a2a']
const lineStyle = [{ type: 'solid' }, { type: 'dashed' }, { type: 'dotted' }]
const titleList: any = ref('')
const titleList: any = ref('(未绑定数据)')
const init = (flag: boolean) => {
titleList.value = ''
titleList.value = '(未绑定数据)'
let list: any = []
//颜色数组
@@ -574,6 +574,8 @@ const init = (flag: boolean) => {
}).then(res => {
if (res.data.length == 0) {
titleList.value = '(未绑定数据)'
}else{
titleList.value = ''
}
chartTitle.value = chartTitle.value + titleList.value
})