📄 jhmy_list.jsp
字号:
<!--function:儿童计划免疫列表
author:zxh
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%@ taglib uri="/WEB-INF/tlds/frametag.tld" prefix="by"%>
<%@ page import="com.stframe.form.DataForm"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
<title>儿童计划免疫</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=GB18030">
<link rel="stylesheet" href="<%=path %>/CSS/style.css" type="text/css" />
</head>
<body topmargin="0" leftmargin="0">
<center>
<table class="TopTable" >
<tr>
<td>
儿童计划免疫列表
</td>
</tr>
</table>
<form id="form" name="form" method="post" action="<%=path%>/Selevet.do?action=JHMY_LIST_PAGE">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="test">
<tr>
<td width="15%" height="30" align="left">
<strong>疫苗名称</strong><input id="YMMC" name="YMMC" type="text" value="${YMMC}" size="12"/>
<strong>免疫类型</strong>
<select name="MYLX" id="MYLX">
<option value="">-请选择-</option>
<by:forby name="DICT_MYLX" id="zc">
<option value="${zc.NAME}" ${zc.NAME==MYLX?'selected':''}>${zc.NAME}</option>
</by:forby>
</select>
<strong>针次</strong>
<select name="ZC" id="ZC">
<option value="">-请选择-</option>
<by:forby name="DICT_MYZC" id="zc">
<option value="${zc.NAME}" ${zc.NAME==ZC?'selected':''}>${zc.NAME}</option>
</by:forby>
</select>
<br>
<strong>岁龄</strong><input id="SL" name="SL" type="text" value="${SL}" size="4"/>
至<input id="SL2" name="SL2" type="text" value="${SL2}" size="4"/>
<strong>月龄</strong><input id="YL" name="YL" type="text" value="${YL}" size="4" maxlength="2"/>
至<input id="YL2" name="YL2" type="text" value="${YL2}" size="4" maxlength="2"/>
<input type="submit" name="submit" value="查询" class="button"/>
</td>
</tr>
</table>
</form>
<table class="MyTABLE" width="100%">
<thead>
<tr align="center">
<td width="10%" ><strong>疫苗编号</strong></td>
<td width="13%" ><strong>疫苗名称</strong></td>
<td width="6%" ><strong>岁龄</strong></td>
<td width="6%" ><strong>月龄</strong></td>
<td width="6%" ><strong>针次</strong></td>
<td width="6%" ><strong>有效天数</strong></td>
<td width="8%" ><strong>免疫类型</strong></td>
<td width="8%" ><strong>是否临时</strong></td>
<td width="14%" ><strong>操作【<a href="<%=path %>/JSP/etjz/jhmy_add.jsp">添加</a>】</strong></td>
</tr>
</thead>
<by:forby name="etmy_list" id="etmy">
<tr align="center">
<td> ${etmy.MYZPDM}</td>
<td> ${etmy.MYZPMC}</td>
<td> ${etmy.SL}岁</td>
<td> ${etmy.YL}月</td>
<td> ${etmy.ZC}</td>
<td> ${etmy.YXTS}天</td>
<td> ${etmy.MYLX}</td>
<td> ${etmy.SFLS=='1'?'临时':'正式'}</td>
<td> <a href="<%=path%>/Selevet.do?action=JHMY_INFO&id=${etmy.ID}&CMD=L">查看</a>
<a href="<%=path%>/Selevet.do?action=JHMY_INFO&id=${etmy.ID}&CMD=U">修改</a>
<a href="<%=path%>/Selevet.do?action=JHMY_DELETE&id=${etmy.ID}&CMD=D" onclick="return(confirm('确实要删吗?'))">删除</a></td>
</tr>
</by:forby>
</table>
<br>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -