Commit 499ac5c6 authored by 杨硕's avatar 杨硕

Update README.md

parent 48d09670
...@@ -74,4 +74,47 @@ npm run lint ...@@ -74,4 +74,47 @@ npm run lint
# 代码格式检查并自动修复 # 代码格式检查并自动修复
npm run lint -- --fix npm run lint -- --fix
``` ```
\ No newline at end of file ## 文件结构
├── build // 构建相关
├── mock // 执行脚本
├── public // 公共文件
│ ├── liulanqi_logo.png // 浏览器图标
│ └── index.html // html模板
├── src // 源代码
│ ├── api // 所有请求
│ ├── assets // 主题 字体等静态资源
│ ├── components // 全局公用组件
│ ├── directive // 全局指令
│ ├── layout // 布局
│ ├── plugins // 通用方法
│ ├── router // 路由
│ ├── store // 全局 store管理
│ ├── utils // 全局公用方法
│ ├── views // view
│ ├──controlPlatform // 工作台
│ ├──login // 登录
│ ├──monitor // 日志
│ ├──system // 系统模块
│ ├──dept // 部门
│ ├──dict // 字典
│ ├──menu // 菜单
│ ├──role // 角色
│ ├──user // 用户
│ ├──404.vue // 404页面
│ ├──reSetPsw.vue // 修改密码页面
│ ├── App.vue // 入口页面
│ ├── main.js // 入口 加载组件 初始化等
│ ├── permission.js // 权限管理
│ └── settings.js // 系统配置
├── .editorconfig // 编码格式
├── .env.development // 开发环境配置
├── .env.production // 生产环境配置
├── .env.test // 测试环境配置
├── .eslintignore // 忽略语法检查
├── .eslintrc.js // eslint 配置项
├── .gitignore // git 忽略项
├── babel.config.js // babel.config.js
├── package.json // package.json
└── vue.config.js // vue.config.js
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment