⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 operatingroomlist.jsp

📁 HIS医院信息系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
	<head>
		<title>查看手术室</title>
		<link rel="stylesheet" type="text/css"
			href="${pageContext.request.contextPath}/Css/LightBlue_Css.css" />
	</head>
	<body>
		<form
			action="${pageContext.request.contextPath}/operatingRoomServlet?opertion=4"
			method="post">
			<input type="button" class="buttonClass" value="空手术室"
				onClick="window.location.href='<%=request.getContextPath()%>/operatingRoomServlet?opertion=1&isUseable=true'">
			<input type="button" value="已用手术室" class="buttonClass"
				onClick="window.location.href='<%=request.getContextPath()%>/operatingRoomServlet?opertion=1&isUseable=false'">
			<table class="simple textCss">
				<tr>
					<th colspan=7 align="center">
						手术室表
					</th>
				</tr>
				<tr>
					<th width="15%" align="center">
						手术室编号
					</th>
					<th width="10%" align="center">
						类型
					</th>
					<th width="20%" align="center">
						地址
					</th>
					<th width="20%" align="center">
						备注
					</th><%--
					<th width="10%" align="center">
						护士列表
					</th>
					--%><th width="10%" align="center">
						是否空闲
					</th>
				</tr>
				<c:forEach items="${operatingRoomList}" var="operating">
					<tr>
						<td align="center">
							${operating.orNo}
						</td>
						<td align="center">
							${operating.type}
						</td>
						<td align="center">
							${operating.address}
						</td>
						<td align="center">
							${operating.info}
						</td>
						<%--<td align="center">
							${operating.nurseList}
						</td>
						--%><td align="center">
							<c:if test="${operating.isUseable==1}">是</c:if>
							<c:if test="${operating.isUseable==0}">否</c:if>
						</td>
					</tr>
				</c:forEach>
				<tr>
					<td colspan="7" align="center">
						<input type="button" value="继续添加" class="buttonClass"
							onClick="javaScript:window.location.href='view_zhouxiaoli/operatingRoom.jsp'">
					</td>
				</tr>
			</table>
		</form>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -