You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
725 B
17 lines
725 B
<template>
|
|
<div class="guide-container"></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useStore } from '@/store/root'
|
|
import { useGuideMapOperation } from '@/composables/useGuideMapOperation'
|
|
import { useFacilityNav } from '@/composables/useFacilityNav'
|
|
import { useGuideFilterShop } from '@/composables/useGuideFilterShop'
|
|
import ScrollView from '@/base/ScrollView/ScrollView.vue'
|
|
|
|
const store = useStore()
|
|
|
|
// const { floorIdx, selectedShopList, filterShopByFloorName, filterAboutCurrentInfo } = useGuideFilterShop() //筛选楼层
|
|
// const { switchFloor, handleMapIcon, list, mapIdx } = useGuideMapOperation() //复位 位置等操作
|
|
// const { handleFacility } = useFacilityNav() //公共设施导航
|
|
</script>
|
|
|