Merge branch 'dev' into master-fetch-dev

This commit is contained in:
奔跑的面条
2023-08-17 09:57:56 +08:00
47 changed files with 1427 additions and 225 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ export const useChartDataFetch = (
fetchFn()
},
{
immediate: false,
immediate: true,
deep: true
}
)
+2 -2
View File
@@ -48,10 +48,10 @@ export const useLifeHandler = (chartConfig: CreateComponentType | CreateComponen
try {
return new Function(`
return (
async function(mouseEvent){
async function(components,mouseEvent){
${fnStr}
}
)`)()
)`)().bind(undefined,components)
} catch (error) {
console.error(error)
}