Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tyutjohn committed Dec 30, 2019
1 parent 99904ee commit 2ed7f40
Show file tree
Hide file tree
Showing 41 changed files with 13,069 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
> 1%
last 2 versions
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* @Author: johnwang
* @since: 2019-11-02 00:29:39
* @lastTime: 2019-11-02 11:58:28
* @LastAuthor: Do not edit
* @Github: https://github.com/tyutjohn
*/
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
24 changes: 24 additions & 0 deletions README-npm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# vue-cli

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
82 changes: 82 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,88 @@
/*
* @Author: tyutjohn
* @Date: 2019-12-30 15:15:20
* @Last Modified by: tyutjohn
* @Last Modified time: 2019-12-30 16:00:06
*/
# SchoolSanitary
学校卫生管理系统

# 系统功能
* 卫生工作组成员管理
* 卫生工作安排
* 健康教育管理
* 学生体验管理
* 常见病防治管理
* 公益献血管理
* 综合体制管理

# 开发分类
## 后台开发
* 接口开发
** 管理员
```
系统基本功能
* 登录
* 退出
系统管理员
* 维护卫生工作组成员的信息
工作组成员
* 维护卫生活动信息
* 维护健康教育工作信息
* 维护常见病信息
* 维护学生信息
* 维护学生献血信息
```
## 前台开发
* view开发
```
Login \\登录页面
Home \\系统主页
```
* components组件
```
Header \\头部
Bottom \\尾部
Adminuser \\超级管理员模块
WorkGroup \\工作组成员信息模快
HeathActivity \\卫生活动信息模快
HeathTeach \\健康教育工作模块
StudentBody \\学生体验管理模块
CommonDisease \\常见病管理模块
StudentDisease \\学生常见病管理模块
PublicBlood \\公益献血模块
StudentSys \\综合体质管理
```
## UI设计
* view页
```
Login \\登录页
Home \\主页
```
* components组件
```
Header \\头部
Bottom \\尾部
Adminuser \\超级管理员模块
WorkGroup \\工作组成员信息模快
HeathActivity \\卫生活动信息模快
HeathTeach \\健康教育工作模块
StudentBody \\学生体验管理模块
CommonDisease \\常见病管理模块
StudentDisease \\学生常见病管理模块
PublicBlood \\公益献血模块
StudentSys \\综合体质管理
```
## 数据库设计
mongodb数据库
* 模型设计
* 数据库关联设计
## 文档设计
* 项目计划书

# 开发人员
tyutjohn
邮箱([email protected])
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
Empty file added log.md
Empty file.
Loading

0 comments on commit 2ed7f40

Please sign in to comment.