Files
cyh-tk-admin/README.md
zhxiao1124 51e26025c6 feat: 完成TikTok短剧管理后台基础功能开发
本次提交搭建了完整的后台管理系统,包含:
1.  登录认证与权限校验体系
2.  工作台、短剧、用户、角色、人员、日志等全业务模块
3.  响应式布局与通用样式组件
4.  菜单动态过滤与路由权限控制
5.  移除了README中冗余的权限管理菜单项
2026-07-01 15:24:13 +08:00

61 lines
770 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# CTH TikTok 短剧管理后台
基于 Vite + TypeScript + React + Arco Design 的后台管理系统,默认中文界面。
## 技术栈
- Vite
- React
- TypeScript
- Arco Design
- React Router
- Axios
- pnpm
## 本地开发
```bash
pnpm install
pnpm run dev
```
默认访问地址:
```text
http://localhost:5173
```
## 后端接口
前端通过环境变量配置后端地址:
```text
VITE_API_BASE_URL=http://localhost:3030
```
当前项目已包含 `.env`,默认指向本地后端 `http://localhost:3030`
## 默认账号
```text
用户名admin
密码admin123
```
## 功能页面
- 登录
- 工作台
- 短剧管理
- 用户管理
- 角色管理
- 管理员管理
- 日志管理
## 验证命令
```bash
pnpm run lint
pnpm run build
```