feat: 完成TikTok短剧管理后台基础功能开发

本次提交搭建了完整的后台管理系统,包含:
1.  登录认证与权限校验体系
2.  工作台、短剧、用户、角色、人员、日志等全业务模块
3.  响应式布局与通用样式组件
4.  菜单动态过滤与路由权限控制
5.  移除了README中冗余的权限管理菜单项
This commit is contained in:
2026-07-01 15:24:13 +08:00
parent 6722752d5e
commit 51e26025c6
27 changed files with 1364 additions and 1282 deletions

View File

@@ -0,0 +1,11 @@
import { Card, Typography } from '@arco-design/web-react';
const { Text } = Typography;
export function NoAccessPage() {
return (
<Card className="section-card" title="暂无权限">
<Text type="secondary">访</Text>
</Card>
);
}