📄 itemchargeselect.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<title>各项价格查询</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<link rel="stylesheet" type="text/css" href="/HospitalManageSystem/css/share_css.css">
</head>
<body>
<html:form action="/itemCharge">
<table align=center bgcolor=cyan style="height:40px;" width="785" height="68">
<tr>
<td>
<html:hidden property="method" value="itemPriceSelect"/>
请输入编号或名称:<html:text property="selectoption" value=""></html:text>
<html:submit>查询</html:submit>
</td>
</tr>
</table>
</html:form>
<logic:present name="ilist">
<table align=center border=1 width="785" height="88">
<tr>
<td>药物编号</td>
<td>药物名称</td>
<td>药物价格</td>
<td>动作</td>
</tr>
<logic:iterate id="i_l" name="ilist">
<tr>
<td><bean:write name="i_l" property="medicine_id"/></td>
<td><bean:write name="i_l" property="medicine_name"/></td>
<td><bean:write name="i_l" property="medicine_price"/></td>
<td>
<html:link action="/itemCharge?method=itemPriceDelect&medicine_id=${i_l.medicine_id}">删除</html:link>
<html:link action="/itemCharge?method=changeUrl&medicine_id=${i_l.medicine_id}">更新</html:link>
</td>
</tr>
</logic:iterate>
</table>
</logic:present>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -