标准化处理方法

This commit is contained in:
wzy-warehouse
2026-04-23 15:56:59 +08:00
parent 6fabf4a68d
commit 68e8c8746e
2 changed files with 10 additions and 12 deletions
@@ -71,13 +71,11 @@
import { useRainDisasterChain } from '@/hooks/rainstorm/useRainDisasterChain';
import { useStatusStore } from '@/stores/useStatusStore';
import { DisasterType } from '@/types/common/DisasterType.ts';
import { watch } from 'vue';
import { useRoute } from 'vue-router';
const route = useRoute();
const {
conditions,
selectOptions,
tableDatas,
tableColumns,
@@ -89,15 +87,6 @@
changeConditions,
changeCurrentPage,
} = useRainDisasterChain();
// 监听条件变化
watch(
conditions,
() => {
console.log('条件改变');
},
{ deep: true }
);
</script>
<style scoped></style>