程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Computer graduation design Python+djangs epidemic prevention and control system for hospital personnel transfer (source code + system + mysql database + Lw document)

編輯:Python

項目介紹

隨著信息技術和網絡技術的飛速發展,人類已進入全新信息化時代,傳統管理技術已無法高效,便捷地管理信息.為了迎合時代需求,優化管理效率,各種各樣的管理系統應運而生,各行各業相繼進入信息管理時代,疫情防控下醫護人員調度系統就是信息時代變革中的產物之一.
任何系統都要遵循系統設計的基本流程,本系統也不例外,同樣需要經過市場進行調研,醫院需求進行分析,概要設計,系統詳細設計,測試和編碼等步驟,設計並實現了疫情防控下醫護人員調度系統.系統選用B/S模式,應用Python技術, MySQL為後台數據庫.系統主要包括首頁,個人中心,醫護人員管理,操作員管理,體溫數據管理,隔離治療管理,Shift scheduling管理,支援信息管理等功能模塊.

功能介紹


The system is divided into managers according to the actual situation,Medical staff and operator three parts.
When managers can manage medical staff operators,可以管理.Body temperature data isolation treatment information shift scheduling management.and support information management.
Medical staff can manage temperature data,Content related to isolation treatment can be managed.At the same time, you can view your own shift scheduling and support information.
The main functions of the operator include?資源信息管理,Long class scheduling,信息管理,隔離治療管理.Body temperature data management and management of personal-related information.

開發環境

計算機畢業設計Python+djangThe hospital staff mobilization system under the epidemic prevention and control(源碼+系統+mysql數據庫+Lw文檔)
開發語言:Python
python框架:django
軟件版本:python3.7/python3.8
數據庫:mysql 5.7或更高版本
數據庫工具:Navicat11
開發軟件:PyCharm/vs code
前端框架:vue.js
可開發框架:ssm/Springboot/vue/python/PHP/小程序/安卓均可開發

系統截圖

管理員登錄進入系統可以查看首頁,個人中心,醫護人員管理,操作員管理,體溫數據管理,隔離治療管理,Shift scheduling管理,支援信息管理等功能,並進行詳細操作

體溫數據管理;The index can be viewed on the body temperature data management page,醫護工號,醫護姓名,體溫,提交時間,核酸檢測等內容,並進行詳情,Shift scheduling,修改和刪除等操作

隔離治療管理;在隔離治療管理頁面中可以查看索引,醫護工號,醫護姓名,隔離時間,隔離病房,操作員賬號,操作員姓名等內容,並進行詳情,修改和刪除等操作

體溫數據管理;The index can be viewed on the body temperature data management page,醫護工號,醫護姓名,體溫,提交時間,核酸檢測等內容,並進行詳情,Shift scheduling,修改和刪除等操作
醫護人員管理;The index can be viewed on the medical staff management page,醫護工號,醫護姓名,性別,年齡,照片等內容,並進行詳情,修改和刪除等操作

核心代碼

def users_login(request):
if request.method in ["POST", "GET"]:
msg = {
'code': normal_code, "msg": mes.normal_code}
req_dict = request.session.get("req_dict")
if req_dict.get('role')!=None:
del req_dict['role']
datas = users.getbyparams(users, users, req_dict)
if not datas:
msg['code'] = password_error_code
msg['msg'] = mes.password_error_code
return JsonResponse(msg)
req_dict['id'] = datas[0].get('id')
return Auth.authenticate(Auth, users, req_dict)
def users_register(request):
if request.method in ["POST", "GET"]:
msg = {
'code': normal_code, "msg": mes.normal_code}
req_dict = request.session.get("req_dict")
error = users.createbyreq(users, users, req_dict)
if error != None:
msg['code'] = crud_error_code
msg['msg'] = error
return JsonResponse(msg)
def users_session(request):
'''
'''
if request.method in ["POST", "GET"]:
msg = {
"code": normal_code,"msg":mes.normal_code, "data": {
}}
req_dict = {
"id": request.session.get('params').get("id")}
msg['data'] = users.getbyparams(users, users, req_dict)[0]
return JsonResponse(msg)
def users_logout(request):
if request.method in ["POST", "GET"]:
msg = {

"msg": "退出成功",
"code": 0
}
return JsonResponse(msg)

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved