Files
xian_vue_new/src/component/rain-earthquake/function-child/AroundAnalysis.vue
T

27 lines
705 B
Vue
Raw Normal View History

<template>
<div
class="around-analysis-box"
2026-05-07 12:53:25 +08:00
v-show="useStatus.functionStatus.aroundAnalysis.show"
>
<!-- 搜索组件 -->
<SearchComponent />
<!-- 按钮组件 -->
<ButtonComponent />
<!-- 具体功能组件 -->
<AroundAnalysisDetailComponent />
</div>
</template>
<script lang="ts" setup>
import { useStatusStore } from '@/stores/useStatusStore';
import AroundAnalysisDetailComponent from './around-analysis/AroundAnalysisDetailComponent.vue';
import ButtonComponent from './around-analysis/ButtonComponent.vue';
import SearchComponent from './around-analysis/SearchComponent.vue';
2026-05-07 12:53:25 +08:00
const useStatus = useStatusStore();
</script>
<style scoped></style>