应该为响应式ref类型,因此有value,原来写法会造成undefined报错

This commit is contained in:
hujiangnan 2023-10-30 09:28:52 +08:00
parent 656949f7b8
commit e62f9cbd02

View File

@ -116,7 +116,7 @@ export const useChartDataPondFetch = () => {
const requestDataPondItem = computed(() => {
return requestGlobalConfig.requestDataPond.find(item => item.dataPondId === pondKey)
}) as ComputedRef<RequestDataPondItemType>
if (requestDataPondItem) {
if (requestDataPondItem.value) {
newPondItemInterval(chartEditStore.requestGlobalConfig, requestDataPondItem, mittDataPondMap.get(pondKey))
}
}