feat:完善其余页面

This commit is contained in:
2026-07-16 16:42:45 +08:00
parent cb9928936b
commit eea6319c41
24 changed files with 12528 additions and 696 deletions
+10
View File
@@ -0,0 +1,10 @@
<script setup>
const route = useRoute()
const isInteriorPage = computed(() => route.path !== '/')
</script>
<template>
<NuxtPage />
<InteriorPageTools v-if="isInteriorPage" />
<ConsultationModal />
</template>