基于javaweb+mysql的springboot医院挂号系统(java+springboot+vue+elementui+layui+mysql)

基于javaweb+mysql的springboot医院挂号系统(java+springboot+vue+elementui+layui+mysql)

私信源码获取及调试交流

运行环境

Java≥8、MySQL≥5.7、Node.js≥10

开发工具

后端:eclipse/idea/myeclipse/sts等均可配置运行

前端:WebStorm/VSCode/HBuilderX等均可

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明

基于javaweb的SpringBoot医院挂号系统(java+springboot+vue+elementui+layui+mysql)

项目介绍

基于SpringBoot Vue的医院管理系统

角色:医生、患者、管理员

管理员:医生信息、科室管理、挂号预约、用户管理、就诊单、住院办理、药品信息、住院通知、药品类别、退费信息、检查信息。 医生:医生信息、挂号预约、就诊单、住院通知、检查信息、登录。 患者:登录注册、首页、公告消息、医院资讯、医生信息、我的账户、个人中心、药品信息等。

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。 2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA; 3.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 4.数据库:MySql 5.7/8.0版本均可; 5.是否Maven项目:是;

技术栈

后端:SpringBoot+Mybaits

前端:layui+Vue+ELementUI

使用说明

项目运行: 1. 使用Navicat或者其它工具,在mysql中创建对应sql文件名称的数据库,并导入项目的sql文件; 2. 使用IDEA/Eclipse/MyEclipse导入项目,导入成功后请执行maven clean;maven install命令,然后运行; 3. 将项目中application.yml配置文件中的数据库配置改为自己的配置; 4. 运行项目,控制台提示运行成功后再去运行前端项目; 5. 管理员用户名密码:admin/admin 普通用户名密码:user/123456

文档介绍(系统功能模块设计、整体功能模块设计、用户模块设计、评论管理模块设计、数据库设计、数据库概念结构设计、数据库逻辑结构设计、医疗管理系统详细设计与实现、用户功能模块、前台首页界面、患者登录界面、患者注册界面、我的账户界面、医生详情界面、医院咨询界面、管理员功能模块、用户管理界面、留言管理界面、站点管理界面):

药品信息列表(公告消息、医院咨询、医生信息、药品信息):

医院咨询详情介绍(公告消息、医院咨询、医生信息、药品信息):

后台管理登录页面:

后台管理列表(站点管理、用户管理、管理员、患者、医生、内容管理、更多管理、医生信息、科室管理、挂号预约、就诊单、住院办理、药品信息、住院通知、药品类别、退费信息、检查信息):

挂号预约详情页面:

药品信息详情界面:

医生信息管理页面:


return "doctor/seek";

@RequestMapping(value = "/doctor/drug",method = RequestMethod.PUT)

@ResponseBody

public JSONObject drug(@RequestBody Map map){

JSONObject json=new JSONObject();

Patient patient=new Patient();

patient.setDrugsids(DrugsUtils.vaild(map));

patient.setId(Integer.parseInt((String)map.get("patientid")));

json.put("message",patientService.seek(patient));

return json;

@RequestMapping(value = "/doctor/zation",method = RequestMethod.POST)


@RequestMapping(value = "/admin/hospitalization",method = RequestMethod.PUT)

@ResponseBody

public JSONObject delHospitalization(@RequestBody Hospitalization hospitalization){

JSONObject json=new JSONObject();

json.put("message",hospitalizationService.updateHospitalization(hospitalization));

return json;

//生成user表excel

@GetMapping(value = "/admin/getHospitalization")

public String getUser(HttpServletResponse response) throws Exception{

HSSFWorkbook workbook = new HSSFWorkbook();

HSSFSheet sheet = workbook.createSheet("统计表");

ExcelUtils.createTitle(workbook,sheet);

List<Hospitalization> rows = hospitalizationService.getAllHospitalizations();


public JSONObject getDoctorByDepartment(@PathVariable String department) throws UnsupportedEncodingException{

JSONObject json=new JSONObject();

department = URLDecoder.decode(department,"UTF-8");

json.put("doctors",doctorService.getDoctorByDepartment(department));

return json;

@RequestMapping( value = "/doctor/seekinfo",method = RequestMethod.POST)

@ResponseBody

public JSONObject seekinfo(@RequestBody Map map){

JSONObject json=new JSONObject();

String message=doctorService.seekInfo(map);

json.put("message",message);

return json;


JSONObject json=new JSONObject();

json.put("message",medicalhistoryService.delMedicalhistory(id));

return json;

@RequestMapping(value = "/admin/medicalhistory/{id}",method = RequestMethod.GET)

public String medicalhistoryInfo(@PathVariable Integer id,HttpServletRequest request){

request.setAttribute("patients",patientService.getAllPatients());

request.setAttribute("doctors",doctorService.getAllDoctor());

request.setAttribute("medicalhistory",medicalhistoryService.getMedicalhistory(id));

return "admin/info/medicalhistoryInfo";

@RequestMapping(value = "/admin/medicalhistory",method = RequestMethod.PUT)

public JSONObject upAdmin(@RequestBody Login login){

JSONObject json=new JSONObject();

json.put("message",loginService.updateAdmin(login));

return json;

@RequestMapping(value = "/admin/admin/{id}",method = RequestMethod.DELETE)

@ResponseBody

public JSONObject delAdmin(@PathVariable Integer id){

JSONObject json=new JSONObject();

json.put("message",loginService.delAdmin(id));

return json;

@RequestMapping(value = "/loginout",method = RequestMethod.GET)

public String loginout(HttpSession session){

session.removeAttribute("login");

@ResponseBody

public JSONObject delAdmin(@PathVariable Integer id){

JSONObject json=new JSONObject();

json.put("message",loginService.delAdmin(id));

return json;

@RequestMapping(value = "/loginout",method = RequestMethod.GET)

public String loginout(HttpSession session){

session.removeAttribute("login");

return "/hospital";

@RequestMapping(value = "/login",method = RequestMethod.POST)

@ResponseBody

public JSONObject login(@RequestBody Login login,HttpSession session){

JSONObject json=new JSONObject();

json.put("message",loginService.login(login));

String fileName = "住院信息.xls";

//生成excel文件

//ExcelUtils.buildExcelFile(fileName, workbook);

//浏览器下载excel

ExcelUtils.buildExcelDocument(fileName,workbook,response);

return "download excel";

药品管理控制层: 

@Controller

public class DrugsController {

@Autowired

@ResponseBody

public JSONObject delDoctor(@PathVariable Integer id){

JSONObject json=new JSONObject();

json.put("message",doctorService.delDoctor(id));

return json;

@RequestMapping(value = "/admin/doctor/{id}",method = RequestMethod.GET)

public String doctorInfo(@PathVariable Integer id,HttpServletRequest request){

request.setAttribute("doctor",doctorService.getDoctor(id));

return "admin/info/doctorinfo";

@RequestMapping(value = "/admin/doctor",method = RequestMethod.POST)

@ResponseBody

public JSONObject AddDoctor(@RequestBody Doctor doctor){

JSONObject json=new JSONObject();


@RequestMapping(value = "/admin/admin",method = RequestMethod.POST)

@ResponseBody

public JSONObject adminAdd(@RequestBody Login login){

JSONObject json=new JSONObject();

json.put("message",loginService.addAmin(login));

return json;

@RequestMapping(value = "/admin/admin",method = RequestMethod.PUT)

@ResponseBody

public JSONObject upAdmin(@RequestBody Login login){

JSONObject json=new JSONObject();

json.put("message",loginService.updateAdmin(login));

return json;

@RequestMapping(value = "/admin/doctor/{id}",method = RequestMethod.GET)

public String doctorInfo(@PathVariable Integer id,HttpServletRequest request){

request.setAttribute("doctor",doctorService.getDoctor(id));

return "admin/info/doctorinfo";

@RequestMapping(value = "/admin/doctor",method = RequestMethod.POST)

@ResponseBody

public JSONObject AddDoctor(@RequestBody Doctor doctor){

JSONObject json=new JSONObject();

json.put("message",doctorService.addDoctor(doctor));

return json;

@RequestMapping(value = "/admin/doctor",method = RequestMethod.PUT)

@ResponseBody

public JSONObject updateDoctor(@RequestBody Doctor doctor){

JSONObject json=new JSONObject();

public String seek(@PathVariable Integer id,HttpServletRequest request){

request.setAttribute("options",optionService.getAll());

request.setAttribute("patient",patientService.getPatient(id));

request.setAttribute("drugs",drugsService.getAllDrugs());

return "doctor/seek";

@RequestMapping(value = "/doctor/drug",method = RequestMethod.PUT)

@ResponseBody

public JSONObject drug(@RequestBody Map map){

JSONObject json=new JSONObject();

Patient patient=new Patient();

patient.setDrugsids(DrugsUtils.vaild(map));
request.setAttribute("hospitalizations",hospitalizationService.getAllHospitalizations(patientname,intime));

return "admin/hospitalizationManage";

@RequestMapping("/admin/hospitalizationAdd")

public String hospitalizationAddPage(HttpServletRequest request){

request.setAttribute("patients",patientService.getAllPatients());

return"admin/add/hospitalizationadd";

@RequestMapping(value = "/admin/hospitalization",method = RequestMethod.POST)

@ResponseBody

public JSONObject hospitalizationAdd(@RequestBody Hospitalization hospitalization){

JSONObject json=new JSONObject();

json.put("message",hospitalizationService.AddHospitalization(hospitalization));

return json;


JSONObject json=new JSONObject();

json.put("message",hospitalizationService.AddHospitalization(hospitalization));

return json;

@RequestMapping(value = "/doctor/medicalhistory/{id}")

public String medicalhistory(@PathVariable Integer id,HttpServletRequest request){

request.setAttribute("medicalhistorys",medicalhistoryService.getMedicalhistoryByPatientId(id));

return "doctor/medicalhistory";

@RequestMapping( value = "/doctor/{department}",method = RequestMethod.GET)

@ResponseBody

public JSONObject getDoctorByDepartment(@PathVariable String department) throws UnsupportedEncodingException{

JSONObject json=new JSONObject();

return json;

//生成user表excel

@GetMapping(value = "/admin/getHospitalization")

public String getUser(HttpServletResponse response) throws Exception{

HSSFWorkbook workbook = new HSSFWorkbook();

HSSFSheet sheet = workbook.createSheet("统计表");

ExcelUtils.createTitle(workbook,sheet);

List<Hospitalization> rows = hospitalizationService.getAllHospitalizations();

//设置日期格式

HSSFCellStyle style = workbook.createCellStyle();

style.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy"));

//新增数据行,并且设置单元格数据

int rowNum=1;

for(Hospitalization hospitalization:rows){

DoctorService doctorService;

@Autowired

AppointmentService appointmentService;

@Autowired

PatientService patientService;

@Autowired

DrugsService drugsService;

@Autowired

HospitalizationService hospitalizationService;

@Autowired

MedicalhistoryService medicalhistoryService;


public JSONObject adminAdd(@RequestBody Login login){

JSONObject json=new JSONObject();

json.put("message",loginService.addAmin(login));

return json;

@RequestMapping(value = "/admin/admin",method = RequestMethod.PUT)

@ResponseBody

public JSONObject upAdmin(@RequestBody Login login){

JSONObject json=new JSONObject();

json.put("message",loginService.updateAdmin(login));

return json;


DrugsService drugsService;

@Autowired

HospitalizationService hospitalizationService;

@Autowired

MedicalhistoryService medicalhistoryService;

@Autowired

OptionService optionService;

@Autowired

SeekService seekService;

@Value("${filepath.seekpdfpath}")

请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述

  • 14
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值