feat:完善首页功能

This commit is contained in:
zjc
2025-01-15 11:20:32 +08:00
parent ebac43f818
commit ef5cb642ca
14 changed files with 163 additions and 111 deletions

View File

@@ -170,7 +170,11 @@
watch(
() => homeStore?.baiduMapData,
(val) => {
if (val) init(val)
if (val) {
setTimeout(() => {
init(val)
}, 1000)
}
},
{ immediate: true }
)