chargeinsertok.jsp

来自「这是一个针对医院管理的一个系统」· JSP 代码 · 共 61 行

JSP
61
字号
<%@ 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>chargeInsertOK.jsp</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>
    <table>
    	<tr>
    		<td>录入成功</td>
    	</tr>
    </table>
    <hr>
    <logic:present name="tlist">
    <logic:iterate id="t" name="tlist">
    <table>
    	<tr>
    		<td>病人编号:</td>
    		<td><%=session.getAttribute("patient_id")%></td>
    	</tr>
    	<tr>
    		<td>所用药物总价:</td>
    		<td><font color=red><%=session.getAttribute("totalprice")%></font>元</td>
    	</tr>
    	<tr>
    		<td>挂号费:</td>
    		<td><font color=red><bean:write name="t" property="registers_charge"/></font>元</td>
    	</tr>
    	<tr>
    		<td>处置费:</td>
    		<td><font color=red><bean:write name="t" property="deal_charge"/></font>元</td>
    	</tr>
    	<tr>
    		<td>化验费:</td>
    		<td><font color=red><bean:write name="t" property="examination_charge"/></font>元</td>
    	</tr>
    </table>
    </logic:iterate>
    </logic:present>
  </body>
</html:html>

⌨️ 快捷键说明

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