# wing-education-web **Repository Path**: radebit/wing-education-web ## Basic Information - **Project Name**: wing-education-web - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-27 - **Last Updated**: 2022-04-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### wing-education-web #### 工程结构 ``` wing-education-web/ ├── api/ api接口列表目录 │ ├── method.js │ └── main.js ├── assets/ 公用的静态资源目录 │ ├── CSS/ │ ├── JS │ ├── fonts │ └── image ├── component/ │ └── 所有的自定义组件 ├── config/ 配置文件目录 │ ├── conf.js 系统编译配置文件 │ ├── index.js 系统全局配置文件 │ ├── dev.env.js 开发模式的全局配置 │ ├── pro.env.js 生产模式的全局配置 │ └── index.js 测试模式的全局配置 ├── layouts/ │ └── 布局目录 ├── middleware/ │ └── 中间件目录 ├── pages/ │ ├── 页面目录 ├── plugins/ │ └── 所有的第三方或自定义插件的目录 ├── static/ │ └── 静态文件目录 ├── store/ │ ├── actions.js │ ├── getters.js │ ├── index.js │ └── mutations.js ├── utils/ │ └── 自定义工具类目录 └── next.config.js nextjs 配置文件 ```