Files
cyh-tk-admin/README.md
zhxiao1124 96eaa810f3 feat: 完善短剧管理后台功能,新增编辑、详情展示优化
1.  重构接口类型定义,新增创建/更新短剧和剧集的载荷类型
2.  新增表单数据转换工具,规范化表单提交参数
3.  优化短剧列表展示,新增封面图和更清晰的集数统计
4.  新增短剧和剧集的编辑弹窗功能
5.  修复测试文件导入路径和README标题
6.  优化角色管理页面的表单提示样式
2026-07-02 17:59:31 +08:00

61 lines
766 B
Markdown
Raw Permalink 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.

# 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
```