feat:【ele】mp/tag 的代码迁移

This commit is contained in:
YunaiV
2025-10-25 15:18:32 +08:00
parent a3890a120f
commit 0566014501
3 changed files with 1 additions and 4 deletions

View File

@@ -50,7 +50,6 @@ export function useGridFormSchema(): VbenFormSchema[] {
value: item.id, value: item.id,
})), })),
placeholder: '请选择公众号', placeholder: '请选择公众号',
allowClear: true,
}, },
defaultValue: accountList[0]?.id, defaultValue: accountList[0]?.id,
}, },

View File

@@ -40,12 +40,10 @@ async function handleSync() {
} }
await confirm('是否确认同步粉丝?'); await confirm('是否确认同步粉丝?');
const hideLoading = message.loading({ const hideLoading = message.loading({
content: '正在同步粉丝...', content: '正在同步粉丝...',
duration: 0, duration: 0,
}); });
try { try {
await syncUser(accountId); await syncUser(accountId);
message.success( message.success(

View File

@@ -74,7 +74,7 @@ const [Modal, modalApi] = useVbenModal({
</script> </script>
<template> <template>
<Modal class="w-[600px]" :title="getTitle"> <Modal :title="getTitle" class="w-[600px]">
<Form class="mx-4" /> <Form class="mx-4" />
</Modal> </Modal>
</template> </template>