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

📄 frontregister.jsp

📁 ktv点歌系统前台收银有开包房
💻 JSP
字号:
<%@ page language="java" pageEncoding="GB18030"%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<%	String path = request.getContextPath(); %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

  
<html:html locale="true">
  <head>
    <html:base />
    
    <title>FrontRegister.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="Box.css">

  </head>
  
  <body>
  
    <h1><p>收银台</p></h1>
    <table  align=center width="755" height="61" border="1"  
  cellpadding="0" cellspacing="1" >
    <tr>
      <td align=center width="60">包房号</td>
      <td align=center width="70">类型</td>
      <td align=center width="80">单价</td>
      <td align=center width="100">状态</td>
      <td align=center width="250">操作</td>   
    </tr>
    <logic:iterate id="box" name="boxlist" type="com.ktv.entity.Box" scope="request">
    <tr onmouseover="this.style.background='#EFF7FF';" onmouseout="this.style.background='#FFFFFF';">
      <td align=center><bean:write  name="box" property="boxNumber"/></td>
      <td align=center><bean:write name="box" property="boxType"/></td>
      <td align=center><bean:write name="box" property="boxUnitPrice"/></td>
      <html:hidden name="box" property="boxId"/>
      <td align=center><bean:write name="box" property="boxStatus"/></td>
      <td align=center>
      <a href="<%=path %>/history.do?methods=openBoxAction&boxId=<bean:write name="box" property="boxId"/>">开包房</a> 
      <a href="<%=path %>/history.do?methods=closeBoxAction&boxId=<bean:write name="box" property="boxId"/>">结账</a>
      <a href="<%=path %>/history.do?methods=getList5&boxId=<bean:write name="box" property="boxId"/>">详细信息</a>
      </td>
      </tr>
      </logic:iterate>

  </table>
  </body>
</html:html>

⌨️ 快捷键说明

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