refactor(auth): 移除登录成功后的测试通知代码

feat(analytics): 添加antdv-next变更说明文档和演示功能
This commit is contained in:
dap
2026-01-14 15:18:58 +08:00
parent bc8ee604fb
commit 35e8549dcc
3 changed files with 31 additions and 17 deletions

View File

@@ -71,16 +71,6 @@ export const useAuthStore = defineStore('auth', () => {
duration: 3,
title: $t('authentication.loginSuccess'),
});
await new Promise((resolve) => setTimeout(resolve, 1000));
Array.from({ length: 5 }).forEach((_, index) => {
setTimeout(() => {
notification.success({
title: '新的notification样式',
description: '这是一条新的通知消息',
});
}, index * 900);
});
}
} finally {
loginLoading.value = false;