aslan-admin/README.md
2025-07-30 17:45:41 +08:00

33 lines
532 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.

# 后台管理系统
建议开发人员使用 `Vscode`
* 必须安装启动 `ESLint` 严格统一代码风格
# 项目启动命令
```
# 初次下载
npm install
# 运行项目
npm run dev
# 打包发布
npm run build:prod
```
# 创建页面流程
```
1.创建页面已文件夹作为一个页面名称index作为入口
2.定义路由在router文件中定义本地路由
3.定义接口Api在api目录定义接口
4.定义Api mock 数据在mock目录定义mock服务数据
5.实现自己的逻辑 完成
```