feat: 走查-交互逻辑调整

This commit is contained in:
rd
2025-07-05 14:27:07 +08:00
parent 12f81cdfc4
commit 9b8e96a2e5
15 changed files with 141 additions and 71 deletions

View File

@ -103,9 +103,10 @@
<GroupManageModal ref="groupManageModalRef" @update="filterBlockRef?.getGroups" />
<TagsManageModal ref="tagsManageModalRef" @update="filterBlockRef?.getTags" />
<AddAccountModal ref="addAccountModalRef" @update="getData" />
<DeleteAccountModal ref="deleteAccountRef" @update="getData" />
<BatchTagModal ref="batchTagModalRef" @update="getData" />
<BatchGroupModal ref="batchGroupModalRef" @update="getData" />
<DeleteAccountModal ref="deleteAccountRef" @update="getData" @batchUpdate="onBatchSuccess" />
<BatchTagModal ref="batchTagModalRef" @update="onBatchSuccess" />
<BatchGroupModal ref="batchGroupModalRef" @update="onBatchSuccess" />
</div>
</template>
@ -267,6 +268,10 @@ const handleBatchTag = () => {
const handleBatchGroup = () => {
batchGroupModalRef.value?.open(selectedItems.value);
};
const onBatchSuccess = () => {
selectedItems.value = [];
getData();
};
const handleOpenAbnormalAccount = () => {
query.value.status = 2;
reload();