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

📄 specialorder.jsp

📁 很好的东东 本人随便做的 仅供学习之用
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>

<%@ 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" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
  <head>
    <html:base />
    
    <title>specialOrder.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="styles.css">
	-->

    <style type="text/css">
<!--
.style1 {
	font-family: "宋体";
	font-size: 14px;
}
body {
	background-color: #CCCCCC;
}
-->
    </style>
  <meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
  
  <body >
    <h1 align="center">特殊要货</h1>
  <form action="QuerySpecialOrders" method="POST">
    <table width="500" align="center">
    <tr><td align="right"><input type="submit" value="刷新"></td></tr>
    </table>
  </form>   
    <hr/>
    <table width="550" border="1" align="center" cellspacing="0" class="style1">
    <tr>
    <td width="60">订单号</td>
    <td width="70">客户</td>
    <td width="70">负责人</td>
    <td width="164">订货日期</td>
    <td width="61">订货明细</td>
    <td width="99" >处理</td>
    </tr>
    
  <logic:present name="list">
  <logic:iterate id="order" name="list">
  <tr>
  <td><bean:write name="order" property="id" />&nbsp;</td>
  <td><bean:write name="order" property="customerName" />&nbsp;</td>
  <td><bean:write name="order" property="principalName" />&nbsp;</td>
  <td><bean:write name="order" property="orderTime" />&nbsp;</td>
  <td><a href="QueryOrderDetails?id=<bean:write name='order' property='id' />" 
  target="_blank">查看</a></td>
  <td>
  <a href="UpdateOrder?id=<bean:write name='order' property='id' />&result=yes" >通过</a>&nbsp;
  <a href="UpdateOrder?id=<bean:write name='order' property='id' />&result=no" >不通过</a>
  </td>
  </tr>
  </logic:iterate>
  </logic:present>  
  
  <logic:present name="noSpecialRecord">
  <tr height="50"><td colspan="6" align="center">查询不到满足条件的记录!</td></tr>
  </logic:present>
  </table>
  </body>
</html:html>

⌨️ 快捷键说明

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