瀏覽代碼

更新readme

code4eat 3 年之前
父節點
當前提交
cfacd7be6b
共有 1 個文件被更改,包括 106 次插入35 次删除
  1. 106 35
      README.md

+ 106 - 35
README.md

@@ -1,22 +1,23 @@
-<!--
- * @Author: your name
- * @Date: 2021-09-03 14:28:27
- * @LastEditTime: 2021-11-26 10:39:03
- * @LastEditors: your name
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /MedicalWisdomCheckSys/README.md
--->
-<h1>MedicalWisdomCheckSys</h1>
 
 
-### MedicalWisdomCheckSys [医管智慧查检系统](http://118.31.245.65:8804/user/login?hospSign=d4miD82MvwFI6gY5) 是基于[Ant Design Pro](https://pro.ant.design). Follow is the quick guide for how to use.
+![image-20211126105817314](./public/projectlogo.jpg)
 
-## Environment Prepare
 
-Install `node_modules`:
+
+
+
+## 医院智慧查检系统
+
+##### 背景:
+
+质量管理是医院管理的一个永恒主题。它是指确定质量方针、目标和职责,并通过质量体系中的质量策划、控制、保证和改进来使其实现的全部活动。最近几年,国家一直对医院的质量管理提出新要求。如2021年6月4日,国务院办公厅发布《关于推动公立医院高质量发展的意见》、2021年7月15日,国务院医改领导小组秘书处发布《关于综合医改试点省份率先推动公立医院高质量发展的通知》等等。同时,在日常查检中,部分医院使用纸质查核表进行现场查核,甚至没有查核表进行记录。导致事后无数据、无统计等情况。针对上述问题及挑战,医院需要更合理、更有效的信息技术来辅助医院达到精益管理的目的。
+
+
+
+##### 安装环境依赖:
 
 ```bash
-npm install
+npm i
 ```
 
 or
@@ -25,42 +26,112 @@ or
 yarn
 ```
 
-## Provided Scripts
-
-Ant Design Pro provides some useful script to help you quick start and build with web project, code style check and test.
 
-Scripts provided in `package.json`. It's safe to modify or add additional script:
 
-### Start project
+##### 启动项目
 
 ```bash
-npm start
+npm run start //包含mock
+npm run start:dev //开发环境,不使用mock,所有数据通过代理接口获取
+
+//更过查看pakage.json
 ```
 
-### Build project
 
-```bash
-npm run build
-```
 
-### Check code style
+#### 预览
+
+![image-20211126135739479](./public/preview.jpg)
+
+
+
+
+
+##### 项目结构
+
+```json
+.
+├── README.md
+├── config
+│   ├── config.dev.ts
+│   ├── config.ts
+│   ├── defaultSettings.ts
+│   ├── oneapi.json
+│   ├── proxy.ts
+│   └── routes.ts
+├── jest.config.js
+├── jsconfig.json
+├── mock
+│   ├── accreditationDetail.ts
+│   ├── articleManagement.ts
+│   ├── generalSetting.ts
+│   ├── listTableList.ts
+│   ├── notices.ts
+│   ├── qualityRating.ts
+│   ├── route.ts
+│   └── user.ts
+├── package-lock.json
+├── package.json
+├── public
+│   ├── CNAME
+│   ├── favicon.ico
+│   ├── icons
+│   ├── logo.png
+│   ├── logo.svg
+│   └── pro_icon.svg
+├── src
+│   ├── access.ts
+│   ├── app.tsx
+│   ├── components
+│   ├── e2e
+│   ├── env.ts
+│   ├── global.less
+│   ├── global.tsx
+│   ├── locales
+│   ├── manifest.json
+│   ├── menuIcons.js
+│   ├── models
+│   ├── pages
+│   ├── service-worker.js
+│   ├── services
+│   ├── test.html
+│   ├── typings.d.ts
+│   └── utils.js
+├── tests
+│   ├── PuppeteerEnvironment.js
+│   ├── beforeTest.js
+│   ├── getBrowser.js
+│   ├── run-tests.js
+│   └── setupTests.js
+├── tree.text
+├── tsconfig.json
+└── yarn.lock
+
+12 directories, 43 files
 
-```bash
-npm run lint
 ```
 
-You can also use script to auto fix some lint error:
 
-```bash
-npm run lint:fix
-```
 
-### Test code
+#### 创建者有话说
 
-```bash
-npm test
+```javascript
+//该项目运用了大量类似关系
+...
+    const [data,setData] = useSate<DataType>();
+
+    useEffect(()=>{
+          //处理相关逻辑
+    },[data]);
+...
+
+//项目数据共享使用的是umi 的model插件,每个page对应一个model.ts文件
 ```
 
-## More
 
-You can view full document on our [official website](https://pro.ant.design). And welcome any feedback in our [github](https://github.com/ant-design/ant-design-pro).
+
+#### RoadMap
+
+- 2022-11-25 
+- 
+