feat: 添加下载管理页面, 引入文件类型检测库以支持多种音频格式

This commit is contained in:
alger
2025-06-03 22:35:04 +08:00
parent bfaa06b0d5
commit 3ac3159058
7 changed files with 1217 additions and 651 deletions
+12
View File
@@ -21,6 +21,18 @@ const otherRouter = [
},
component: () => import('@/views/user/followers.vue')
},
{
path: '/downloads',
name: 'downloads',
meta: {
title: '下载管理',
keepAlive: true,
showInMenu: true,
back: true,
icon: 'ri-download-cloud-2-line'
},
component: () => import('@/views/download/DownloadPage.vue')
},
{
path: '/user/detail/:uid',
name: 'userDetail',