添加离线地图

This commit is contained in:
GGJ
2024-12-16 20:57:17 +08:00
parent 0cd5598e8c
commit ccd07ed110
93 changed files with 20430 additions and 126 deletions

View File

@@ -0,0 +1,39 @@
<template>
<div class="default-main device pd10">
<waveForm ref="waveFormRef" />
</div>
</template>
<script lang="ts" setup>
import { ref, onMounted, watch, nextTick } from 'vue'
import waveForm from '@/components/echarts/waveForm.vue'
import { useRoute } from 'vue-router'
const route = useRoute()
const activeName = ref('')
const waveFormRef = ref()
watch(
() => activeName.value,
(val, oldVal) => {
nextTick(() => {
// waveFormRef.value && waveFormRef.value.getMakeUpDataList(route.query)
})
},
{
immediate: true,
deep: true
}
)
onMounted(() => {
// activeName.value = route.query.activeName
// waveForm.value && waveForm.value.getMakeUpDataList(route.query)
})
</script>
<style lang="scss" scoped>
.device {
overflow: hidden;
// height: calc(100vh - 130px);
}
</style>