-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
13,069 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
> 1% | ||
last 2 versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset' | ||
] | ||
} |
Oops, something went wrong.