feat: enhance sidebar quota display with progress bar and improve upload modal UX

- Replace percentage-based quota with point-based display in sidebar
- Add visual progress bar for remaining quota with gradient styling
- Implement upload progress tracking in material upload modal
- Add loading indicators and progress information during file uploads
- Prevent modal interaction while uploading by disabling close controls
- Show current upload status including file index and completion percentage
This commit is contained in:
2026-03-03 22:15:06 +08:00
parent 2c8664b41e
commit 7b32191987
4 changed files with 329 additions and 67 deletions

View File

@@ -173,6 +173,9 @@ router.beforeEach(async (to, from, next) => {
await userStore.fetchUserInfo()
}
// 4. 路由切换时更新用户额度
userStore.fetchUserProfile()
next()
})