修改组件中store的调用方式

This commit is contained in:
wzy-warehouse
2026-05-07 13:59:14 +08:00
parent ce6200389c
commit 4b55283ff6
32 changed files with 299 additions and 303 deletions
@@ -1,7 +1,7 @@
<template>
<div
class="around-analysis-box"
v-show="useStatus.functionStatus.aroundAnalysis.show"
v-show="statusStore.functionStatus.aroundAnalysis.show"
>
<!-- 搜索组件 -->
<SearchComponent />
@@ -20,7 +20,7 @@
import ButtonComponent from './around-analysis/ButtonComponent.vue';
import SearchComponent from './around-analysis/SearchComponent.vue';
const useStatus = useStatusStore();
const statusStore = useStatusStore();
</script>
<style scoped></style>