创建了3个新文件:

pages_dashboard.tsx (系统仪表盘功能)
pages_users.tsx (用户管理功能)
pages_file_library.tsx (文件库管理功能)
更新了所有引用:

修改了web_app.tsx中的导入语句
确保路由配置正确指向新文件
原pages_sys.tsx文件已不再使用,可以安全删除
This commit is contained in:
yourname
2025-05-13 09:17:50 +00:00
parent 08ae3b85df
commit d0d88ab950
4 changed files with 330 additions and 334 deletions

View File

@@ -55,10 +55,14 @@ import {
} from './hooks_sys.tsx';
import {
DashboardPage,
UsersPage,
DashboardPage
} from './pages_dashboard.tsx';
import {
UsersPage
} from './pages_users.tsx';
import {
FileLibraryPage
} from './pages_sys.tsx';
} from './pages_file_library.tsx';
import { KnowInfoPage } from './pages_know_info.tsx';
import { MessagesPage } from './pages_messages.tsx';
import {SettingsPage } from './pages_settings.tsx';