2026-07-16 16:42:45 +08:00
|
|
|
<script setup>
|
|
|
|
|
const route = useRoute()
|
|
|
|
|
const isInteriorPage = computed(() => route.path !== '/')
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<NuxtPage />
|
|
|
|
|
<InteriorPageTools v-if="isInteriorPage" />
|
|
|
|
|
<ConsultationModal />
|
2026-07-24 18:55:51 +08:00
|
|
|
<CustomerChatFloating />
|
2026-07-16 16:42:45 +08:00
|
|
|
</template>
|