失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > 医院项目-预约挂号-第六部分(医院管理排班和网关)

医院项目-预约挂号-第六部分(医院管理排班和网关)

时间:2019-11-26 01:09:31

相关推荐

医院项目-预约挂号-第六部分(医院管理排班和网关)

目录

一、排班管理:二、排班管理实现:1、科室列表1.1 后端api接口1.2 科室前端: 2、排班日期分页列表2.1 后端api接口:2.2 排班日期前端:3、根据排班日期获取排班详情列表: 三、服务网关:1、网关介绍2、Spring Cloud Gateway介绍3、搭建server-gateway模块

一、排班管理:

1、页面效果:

排班分成三部分显示:

1、科室信息(大科室与小科室树形展示)

2、排班日期,分页显示,根据上传排班数据聚合统计产生

3、排班日期对应的就诊医生信息

2、接口分析:

1,科室数据使用Element-ui el-tree组件渲染展示,需要将医院上传的科室数据封装成两层父子级数据;

2,聚合所有排班数据,按日期分页展示,并统计号源数据展示;

3,根据排班日期获取排班详情数据

3、实现分析

虽然是一个页面展示所有内容,但是页面相对复杂,我们分步骤实现

1,先实现左侧科室树形展示;

2,其次排班日期分页展示

3,最后根据排班日期获取排班详情数据

二、排班管理实现:

1、科室列表

1.1 后端api接口

controller:

这里为何要用DepartmentVo类作为泛型,因为此DepartmentVo类有一个子属性List children;用来封装子科室;

实现类:

//根据医院编号,查询医院所有科室列表@Overridepublic List<DepartmentVo> findDeptTree(String hoscode) {//创建list集合,用于最终数据封装List<DepartmentVo> result = new ArrayList<>();//根据医院编号,查询医院所有科室信息Department departmentQuery = new Department();departmentQuery.setHoscode(hoscode);Example example = Example.of(departmentQuery);//所有科室列表 departmentListList<Department> departmentList = departmentRepository.findAll(example);//根据大科室编号 bigcode 分组,获取每个大科室里面下级子科室Map<String, List<Department>> deparmentMap =departmentList.stream().collect(Collectors.groupingBy(Department::getBigcode));//遍历map集合 deparmentMapfor(Map.Entry<String,List<Department>> entry : deparmentMap.entrySet()) {//大科室编号String bigcode = entry.getKey();//大科室编号对应的全局数据List<Department> deparment1List = entry.getValue();//封装大科室DepartmentVo departmentVo1 = new DepartmentVo();departmentVo1.setDepcode(bigcode);departmentVo1.setDepname(deparment1List.get(0).getBigname());//封装小科室List<DepartmentVo> children = new ArrayList<>();for(Department department: deparment1List) {DepartmentVo departmentVo2 = new DepartmentVo();departmentVo2.setDepcode(department.getDepcode());departmentVo2.setDepname(department.getDepname());//封装到list集合children.add(departmentVo2);}//把小科室list集合放到大科室children里面departmentVo1.setChildren(children);//放到最终result里面result.add(departmentVo1);}//返回return result;}

swagger测试:

1.2 科室前端:

1.2.1 添加路由

在 src/router/index.js 文件添加排班隐藏路由

{path: 'hospital/schedule/:hoscode',name: '排班',component: () => import('@/views/hosp/schedule'),meta: { title: '排班', noCache: true },hidden: true}

1.2.2 添加按钮

在医院列表页面,添加排班按钮:

<router-link :to="'/hospSet/hospital/schedule/'+scope.row.hoscode"><el-button type="primary" size="mini">排班</el-button></router-link>

1.2.3封装前端api请求

//6.排班getscheduleByHoscode(hoscode){return request({url: `admin/hosp/department/getDeptList_my/${hoscode}`,method: 'get'})}

1.2.4 部门展示

修改/views/hosp/schedule.vue组件:

<template><div class="app-container"><div style="margin-bottom: 10px;font-size: 10px;">选择:</div><el-container style="height: 100%"><el-aside width="200px" style="border: 1px silver solid"><!-- 部门 --><el-tree:data="data":props="defaultProps":default-expand-all="true"@node-click="handleNodeClick"></el-tree></el-aside><el-main style="padding: 0 0 0 20px;"><el-row style="width: 100%"><!-- 排班日期 分页 --></el-row><el-row style="margin-top: 20px;"><!-- 排班日期对应的排班医生 --></el-row></el-main></el-container></div></template><script>import hospApi from '@/api/hosp'export default {data() {return {data: [], //后端接口返回的数据defaultProps: { //子节点children: 'children',label: 'depname'},hoscode: null //医院编号}},created(){//因为我们是通过路径来传参数hoscode。要从又有参数中获取参数hoscodethis.hoscode = this.$route.params.hoscode;this.fetchData();},methods:{fetchData(){hospApi.getscheduleByHoscode(this.hoscode).then( res => {this.data = res.data; //将后台数据赋值 给前台 })}}}</script><!-- 控制样式在左边 --><style>.el-tree-node.is-current > .el-tree-node__content {background-color: #409EFF !important;color: white;}.el-checkbox__input.is-checked+.el-checkbox__label {color: black;}</style>

2、排班日期分页列表

2.1 后端api接口:

添加controller接口

添加com.fan.yygh.hosp.controller.ScheduleController类

//根据医院编号 和 科室编号 ,查询排班规则数据@ApiOperation(value ="查询排班规则数据")@GetMapping("getScheduleRule/{page}/{limit}/{hoscode}/{depcode}")public Result getScheduleRule(@PathVariable long page,@PathVariable long limit,@PathVariable String hoscode,@PathVariable String depcode) {Map<String,Object> map = scheduleService.getRuleSchedule(page,limit,hoscode,depcode);return Result.ok(map);}

实现类:

@Autowiredprivate ScheduleRepository scheduleRepository;@Autowiredprivate MongoTemplate mongoTemplate;@Autowiredprivate HospitalService hospitalService;//根据医院编号 和 科室编号 ,查询排班规则数据@Overridepublic Map<String, Object> getRuleSchedule(long page, long limit, String hoscode, String depcode) {//1 根据医院编号 和 科室编号 查询Criteria criteria = Criteria.where("hoscode").is(hoscode).and("depcode").is(depcode);//2 根据工作日workDate期进行分组Aggregation agg = Aggregation.newAggregation(Aggregation.match(criteria),//匹配条件Aggregation.group("workDate")//分组字段.first("workDate").as("workDate")//3 统计号源数量.count().as("docCount").sum("reservedNumber").as("reservedNumber").sum("availableNumber").as("availableNumber"),//排序Aggregation.sort(Sort.Direction.DESC,"workDate"),//4 实现分页Aggregation.skip((page-1)*limit),Aggregation.limit(limit));//调用方法,最终执行AggregationResults<BookingScheduleRuleVo> aggResults =mongoTemplate.aggregate(agg, Schedule.class, BookingScheduleRuleVo.class);List<BookingScheduleRuleVo> bookingScheduleRuleVoList = aggResults.getMappedResults();//分组查询的总记录数Aggregation totalAgg = Aggregation.newAggregation(Aggregation.match(criteria),Aggregation.group("workDate"));AggregationResults<BookingScheduleRuleVo> totalAggResults =mongoTemplate.aggregate(totalAgg, Schedule.class, BookingScheduleRuleVo.class);int total = totalAggResults.getMappedResults().size();//把日期对应星期获取for(BookingScheduleRuleVo bookingScheduleRuleVo:bookingScheduleRuleVoList) {Date workDate = bookingScheduleRuleVo.getWorkDate();String dayOfWeek = this.getDayOfWeek(new DateTime(workDate));bookingScheduleRuleVo.setDayOfWeek(dayOfWeek);}//设置最终数据,进行返回Map<String, Object> result = new HashMap<>();result.put("bookingScheduleRuleList",bookingScheduleRuleVoList);result.put("total",total);//获取医院名称String hosName = hospitalService.getHospName(hoscode);//其他基础数据Map<String, String> baseMap = new HashMap<>();baseMap.put("hosname",hosName);result.put("baseMap",baseMap);return result;}

增加日期工具类:

/*** 根据日期获取周几数据* @param dateTime* @return*/private String getDayOfWeek(DateTime dateTime) {String dayOfWeek = "";switch (dateTime.getDayOfWeek()) {case DateTimeConstants.SUNDAY:dayOfWeek = "周日";break;case DateTimeConstants.MONDAY:dayOfWeek = "周一";break;case DateTimeConstants.TUESDAY:dayOfWeek = "周二";break;case DateTimeConstants.WEDNESDAY:dayOfWeek = "周三";break;case DateTimeConstants.THURSDAY:dayOfWeek = "周四";break;case DateTimeConstants.FRIDAY:dayOfWeek = "周五";break;case DateTimeConstants.SATURDAY:dayOfWeek = "周六";default:break;}return dayOfWeek;}

获取医院名称的实现类:

获取医院名称的实现类:

//获取医院的名字根据医院编号@Overridepublic String getHospName(String hoscode) {Hospital hospital = hospitalRepository.getHospitalByHoscode(hoscode);if(hospital != null){System.out.println(hospital.getHosname());return hospital.getHosname();//获取医院名称}return null;}

测试:

2.2 排班日期前端:

1.2.1封装api请求

在/api/hosp/schedule.js文件添加方法:

//7.查询预约规则getScheduleRule(page,limit,hoscode,depcode){return request({url: `admin/hosp/schedule/getScheduleRule/${page}/${limit}/${hoscode}/${depcode}`,method: 'get'})}

页面展示

修改/views/hosp/schedule.vue组件:

export default {data() {return {data: [], //后端接口返回的数据defaultProps: { //子节点children: 'children',label: 'depname'},hoscode: null ,//医院编号activeIndex: 0,depcode: null,depname: null,workDate: null,bookingScheduleList: [],baseMap: {},page: 1, // 当前页limit: 7, // 每页个数total: 0 // 总页码}},created(){//因为我们是通过路径来传参数hoscode。要从又有参数中获取参数hoscodethis.hoscode = this.$route.params.hoscode;this.workDate = this.getCurDate();this.fetchData();},methods:{fetchData(){hospApi.getscheduleByHoscode(this.hoscode).then( res => {this.data = res.data; //将后台数据赋值 给前台 // 默认选中第一个if (this.data.length > 0) {this.depcode = this.data[0].children[0].depcodethis.depname = this.data[0].children[0].depnamethis.getPage()}})},getPage(page = 1) {this.page = pagethis.workDate = nullthis.activeIndex = 0this.getScheduleRule()},getScheduleRule() {hospApi.getScheduleRule(this.page, this.limit, this.hoscode, this.depcode).then(response => {this.bookingScheduleList = response.data.bookingScheduleRuleListthis.total = response.data.totalthis.scheduleList = response.data.scheduleListthis.baseMap = response.data.baseMap// 分页后workDate=null,默认选中第一个if (this.workDate == null) {this.workDate = this.bookingScheduleList[0].workDate}})},handleNodeClick(data) {// 科室大类直接返回if (data.children != null) returnthis.depcode = data.depcodethis.depname = data.depnamethis.getPage(1)},selectDate(workDate, index) {this.workDate = workDatethis.activeIndex = index},getCurDate() {var datetime = new Date()var year = datetime.getFullYear()var month = datetime.getMonth() + 1 < 10 ? '0' + (datetime.getMonth() + 1) : datetime.getMonth() + 1var date = datetime.getDate() < 10 ? '0' + datetime.getDate() : datetime.getDate()return year + '-' + month + '-' + date}}}</script><!-- --><style>.el-tree-node.is-current > .el-tree-node__content {background-color: #409EFF !important;color: white;}.el-checkbox__input.is-checked+.el-checkbox__label {color: black;}</style>

3、根据排班日期获取排班详情列表:

添加controller:

//根据医院编号 、科室编号和工作日期,查询排班详细信息

实现类:

//根据医院编号 、科室编号和工作日期,查询排班详细信息@Overridepublic List<Schedule> getDetailSchedule(String hoscode, String depcode, String workDate) {//根据参数查询mongodbList<Schedule> scheduleList =scheduleRepository.findScheduleByHoscodeAndDepcodeAndWorkDate(hoscode,depcode,new DateTime(workDate).toDate());//把得到list集合遍历,向设置其他值:医院名称、科室名称、日期对应星期scheduleList.stream().forEach(item->{this.packageSchedule(item);});return scheduleList;}//封装排班详情其他值 医院名称、科室名称、日期对应星期private void packageSchedule(Schedule schedule) {//设置医院名称schedule.getParam().put("hosname",hospitalService.getHospName(schedule.getHoscode()));//设置科室名称schedule.getParam().put("depname",departmentService.getDepName(schedule.getHoscode(),schedule.getDepcode()));//设置日期对应星期schedule.getParam().put("dayOfWeek",this.getDayOfWeek(new DateTime(schedule.getWorkDate())));}

测试:

排班详情前端:api接口

//8.查询排班详情getScheduleDetail(hoscode,depcode,workDate){return request({url: `admin/hosp/schedule/getScheduleDetail/${hoscode}/${depcode}/${workDate}`,method: 'get'})},

排班的详情显示组件:

<el-tablev-loading="listLoading":data="scheduleList"borderfithighlight-current-row><el-table-columnlabel="序号"width="60"align="center"><template slot-scope="scope">{{ scope.$index + 1 }}</template></el-table-column><el-table-column label="职称" width="150"><template slot-scope="scope">{{ scope.row.title }} | {{ scope.row.docname }}</template></el-table-column><el-table-column label="号源时间" width="80"><template slot-scope="scope">{{ scope.row.workTime == 0 ? "上午" : "下午" }}</template></el-table-column><el-table-column prop="reservedNumber" label="可预约数" width="80"/><el-table-column prop="availableNumber" label="剩余预约数" width="100"/><el-table-column prop="amount" label="挂号费(元)" width="90"/><el-table-column prop="skill" label="擅长技能"/></el-table>

最终的排班页面:

<template><div class="app-container"><div style="margin-bottom: 10px;font-size: 10px;">选择:{{ baseMap.hosname }} / {{ depname }} / {{ workDate }}</div><el-container style="height: 100%"><el-aside width="200px" style="border: 1px silver solid"><!-- 部门 --><el-tree:data="data":props="defaultProps":default-expand-all="true"@node-click="handleNodeClick"></el-tree></el-aside><el-main style="padding: 0 0 0 20px;"><el-row style="width: 100%"><!-- 排班日期 分页 --><el-tag v-for="(item,index) in bookingScheduleList" :key="item.id" @click="selectDate(item.workDate, index)" :type="index == activeIndex ? '' : 'info'" style="height: 60px;margin-right: 5px;margin-right:15px;cursor:pointer;">{{ item.workDate }} {{ item.dayOfWeek }}<br/>{{ item.availableNumber }} / {{ item.reservedNumber }}</el-tag><!-- 分页 --><el-pagination:current-page="page":total="total":page-size="limit"class="pagination"layout="prev, pager, next"@current-change="getPage"></el-pagination></el-row><el-row style="margin-top: 20px;"><!-- 排班日期对应的排班医生 --><el-tablev-loading="listLoading":data="scheduleList"borderfithighlight-current-row><el-table-columnlabel="序号"width="60"align="center"><template slot-scope="scope">{{ scope.$index + 1 }}</template></el-table-column><el-table-column label="职称" width="150"><template slot-scope="scope">{{ scope.row.title }} | {{ scope.row.docname }}</template></el-table-column><el-table-column label="号源时间" width="80"><template slot-scope="scope">{{ scope.row.workTime == 0 ? "上午" : "下午" }}</template></el-table-column><el-table-column prop="reservedNumber" label="可预约数" width="80"/><el-table-column prop="availableNumber" label="剩余预约数" width="100"/><el-table-column prop="amount" label="挂号费(元)" width="90"/><el-table-column prop="skill" label="擅长技能"/></el-table></el-row></el-main></el-container></div></template><script>import hospApi from '@/api/hosp'export default {data() {return {data: [], //后端接口返回的数据defaultProps: { //子节点children: 'children',label: 'depname'},hoscode: null ,//医院编号activeIndex: 0,depcode: null,depname: null,workDate: null,bookingScheduleList: [],baseMap: {},page: 1, // 当前页limit: 7, // 每页个数total: 0 , // 总页码scheduleList:[] //排班详情}},created(){//因为我们是通过路径来传参数hoscode。要从又有参数中获取参数hoscodethis.hoscode = this.$route.params.hoscode;this.workDate = this.getCurDate();this.fetchData();},methods:{//3.查询排班详情getDetailSchedule() {hospApi.getScheduleDetail(this.hoscode,this.depcode,this.workDate).then(response => {this.scheduleList = response.data})},//1fetchData(){hospApi.getscheduleByHoscode(this.hoscode).then( res => {this.data = res.data; //将后台数据赋值 给前台 // 默认选中第一个if (this.data.length > 0) {this.depcode = this.data[0].children[0].depcodethis.depname = this.data[0].children[0].depnamethis.getPage()}})},getPage(page = 1) {this.page = pagethis.workDate = nullthis.activeIndex = 0this.getScheduleRule()},getScheduleRule() {hospApi.getScheduleRule(this.page, this.limit, this.hoscode, this.depcode).then(response => {this.bookingScheduleList = response.data.bookingScheduleRuleListthis.total = response.data.totalthis.scheduleList = response.data.scheduleListthis.baseMap = response.data.baseMap// 分页后workDate=null,默认选中第一个if (this.workDate == null) {this.workDate = this.bookingScheduleList[0].workDate;}//调用查询排班详情this.getDetailSchedule()})},handleNodeClick(data) {// 科室大类直接返回if (data.children != null) returnthis.depcode = data.depcodethis.depname = data.depnamethis.getPage(1)},selectDate(workDate, index) {this.workDate = workDatethis.activeIndex = index;//调用查询排班详情this.getDetailSchedule()},getCurDate() {var datetime = new Date()var year = datetime.getFullYear()var month = datetime.getMonth() + 1 < 10 ? '0' + (datetime.getMonth() + 1) : datetime.getMonth() + 1var date = datetime.getDate() < 10 ? '0' + datetime.getDate() : datetime.getDate()return year + '-' + month + '-' + date}}}</script><!-- --><style>.el-tree-node.is-current > .el-tree-node__content {background-color: #409EFF !important;color: white;}.el-checkbox__input.is-checked+.el-checkbox__label {color: black;}</style>

三、服务网关:

1、网关介绍

API网关出现的原因是微服务架构的出现,不同的微服务一般会有不同的网络地址,而外部客户端可能需要调用多个服务的接口才能完成一个业务需求,如果让客户端直接与各个微服务通信,会有以下的问题:

(1)客户端会多次请求不同的微服务,增加了客户端的复杂性。

(2)存在跨域请求,在一定场景下处理相对复杂。

(3)认证复杂,每个服务都需要独立认证。

(4)难以重构,随着项目的迭代,可能需要重新划分微服务。例如,可能将多个服务合并成一个或者将一个服务拆分成多个。如果客户端直接与微服务通信,那么重构将会很难实施。

(5)某些微服务可能使用了防火墙 / 浏览器不友好的协议,直接访问会有一定的困难。

以上这些问题可以借助 API 网关解决。API 网关是介于客户端和服务器端之间的中间层,所有的外部请求都会先经过API 网关这一层。也就是说,API 的实现方面更多的考虑业务逻辑,而安全、性能、监控可以交由 API 网关来做,这样既提高业务灵活性又不缺安全性

2、Spring Cloud Gateway介绍

Spring cloud gateway是spring官方基于Spring 5.0、Spring Boot2.0和Project Reactor等技术开发的网关,Spring Cloud Gateway旨在为微服务架构提供简单、有效和统一的API路由管理方式,Spring Cloud Gateway作为Spring Cloud生态系统中的网关,目标是替代Netflix Zuul,其不仅提供统一的路由方式,并且还基于Filer链的方式提供了网关基本的功能,例如:安全、监控/埋点、限流等

3、搭建server-gateway模块

服务网关

3.1 搭建server-gateway,在根工程yygh_parent下创建maven工程:

搭建过程如common模块

3.2 修改配置pom.xml:

<dependencies><dependency><groupId>com.atguigu.yygh</groupId><artifactId>common-util</artifactId><version>1.0</version></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-gateway</artifactId></dependency><!-- 服务注册 --><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId></dependency></dependencies>

3.3 在resources下添加配置文件

1、application.properties:

# 服务端口server.port=80# 服务名spring.application.name=service-gateway# nacos服务地址spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848#使用服务发现路由spring.cloud.gateway.discovery.locator.enabled=true#设置路由idspring.cloud.gateway.routes[0].id=service-hosp#设置路由的urispring.cloud.gateway.routes[0].uri=lb://service-hosp#设置路由断言,代理servicerId为auth-service的/auth/路径spring.cloud.gateway.routes[0].predicates= Path=/*/hosp/**#设置路由idspring.cloud.gateway.routes[1].id=service-cmn#设置路由的urispring.cloud.gateway.routes[1].uri=lb://service-cmn#设置路由断言,代理servicerId为auth-service的/auth/路径spring.cloud.gateway.routes[1].predicates= Path=/*/cmn/**

3.4添加启动类

package com.fan.yygh;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class ServerGatewayApplication {public static void main(String[] args) {SpringApplication.run(ServerGatewayApplication.class, args);}}

3.5 跨域处理

跨域:浏览器对于javascript的同源策略的限制 。

以下情况都属于跨域:

如果域名和端口都相同,但是请求路径不同,不属于跨域,如:

/item

/goods

http和https也属于跨域

而我们刚才是从localhost:1000去访问localhost:8888,这属于端口不同,跨域了。

3.5.1 为什么有跨域问题?

跨域不一定都会有跨域问题。

因为跨域问题是浏览器对于ajax请求的一种安全限制:一个页面发起的ajax请求,只能是与当前页域名相同的路径,这能有效的阻止跨站攻击。

因此:跨域问题 是针对ajax的一种限制。

但是这却给我们的开发带来了不便,而且在实际生产环境中,肯定会有很多台服务器之间交互,地址和端口都可能不同,怎么办?

3.5.2解决跨域问题:

网关的全局配置类实现:

CorsConfig类:

@Configurationpublic class CorsConfig {@Beanpublic CorsWebFilter corsFilter() {CorsConfiguration config = new CorsConfiguration();config.addAllowedMethod("*");config.addAllowedOrigin("*");config.addAllowedHeader("*");UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(new PathPatternParser());source.registerCorsConfiguration("/**", config);return new CorsWebFilter(source);}}

3.6服务调整

目前我们已经在网关做了跨域处理,那么service服务就不需要再做跨域处理了,将之前在controller类上添加过@CrossOrigin标签的去掉,防止程序异常;

3.7测试

通过平台与管理平台前端测试

前端这里改成 这样:

启动 三个程序去测试:

测试发现排班有小问题,时间不对,点击上面日期不能显示对应的排班详细信息;

如果觉得《医院项目-预约挂号-第六部分(医院管理排班和网关)》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。