修改粉尘大屏

This commit is contained in:
hzz 2023-05-31 17:24:16 +08:00
parent 7ab10a9921
commit c294b38e82

View File

@ -35,6 +35,7 @@ let pmtest = ref({
title: 'PM测试',
value: { two: '44', ten: '51' }
})
document.title = t('messages.environment_dust')
type pmData = {
title: string,
devId:string,
@ -62,7 +63,12 @@ async function getData() {
ten: '0'
}
}
pmData.push(temp)
if (title[0] == "厂区") {
pmData.unshift(temp)
} else {
pmData.push(temp)
}
})
}