fix: wrong rotate

This commit is contained in:
Methapon2001 2024-06-25 16:08:46 +07:00
parent 96aac0576f
commit 3aab3db465

View file

@ -94,7 +94,6 @@ const treeData = computed(() => {
onMounted(async () => {
await branchStore.fetchList({ pageSize: 99999 });
flowStore.rotate();
const _stats = await branchStore.stats();
@ -104,6 +103,8 @@ onMounted(async () => {
{ count: _stats.br, label: 'branchLabel', color: 'purple' },
);
}
flowStore.rotate();
});
const statusFilter = ref<'all' | 'statusACTIVE' | 'statusINACTIVE'>('all');