# roncoo-education-web **Repository Path**: wangxiaofengOSC/roncoo-education-web ## Basic Information - **Project Name**: roncoo-education-web - **Description**: 《领课教育》的前端门户系统。领课教育系统(roncoo-education)是基于领课网络多年的在线教育平台开发和运营经验打造出来的产品,致力于打造一个全行业都适用的分布式在线教育系统。 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: https://edu.roncoo.net - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 838 - **Created**: 2020-01-03 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

903738971
74876271 已满
774890501 已满
702189511 已满
826617734 已满
### 商业合作
* 如果想使用教育系统,我们商业版功能更强大!
* 如果想定制教育系统,我们提供有偿服务支持!
* 如果想运营教育平台,我们有提供Saas云服务!
* 支持其他合作方式,欢迎来撩!
* 商务合作联系QQ:513781560
* 商务合作联系QQ:2955237748
* 官网地址:[https://edu.roncoo.net](https://edu.roncoo.net/index.html)
#### 目录结构
```
roncoo-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 配置文件
```
#### 编译使用
``` bash
# install dependencies
$ npm install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm start
```