fix: wrong rotate
This commit is contained in:
parent
96aac0576f
commit
3aab3db465
1 changed files with 2 additions and 1 deletions
|
|
@ -94,7 +94,6 @@ const treeData = computed(() => {
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await branchStore.fetchList({ pageSize: 99999 });
|
await branchStore.fetchList({ pageSize: 99999 });
|
||||||
flowStore.rotate();
|
|
||||||
|
|
||||||
const _stats = await branchStore.stats();
|
const _stats = await branchStore.stats();
|
||||||
|
|
||||||
|
|
@ -104,6 +103,8 @@ onMounted(async () => {
|
||||||
{ count: _stats.br, label: 'branchLabel', color: 'purple' },
|
{ count: _stats.br, label: 'branchLabel', color: 'purple' },
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
flowStore.rotate();
|
||||||
});
|
});
|
||||||
|
|
||||||
const statusFilter = ref<'all' | 'statusACTIVE' | 'statusINACTIVE'>('all');
|
const statusFilter = ref<'all' | 'statusACTIVE' | 'statusINACTIVE'>('all');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue