?? ordermanage.jsp
字號:
<%@ page language="java" contentType="text/html; charset=gbk"
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" "http://www.w3.org/TR/html4/loose.dtd">
<html:html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>無標題文檔</title>
<style type="text/css">
<!--
.STYLE1 {font-size: 16px}
-->
</style>
</head>
<body>
<table width="941" height="94" border="1">
<tr>
<th height="29" colspan="14" scope="col"><div align="left"><span class="STYLE1">定單列表</span></div></th>
</tr>
<tr>
<td>編號</td>
<td>航班號</td>
<td>聯系人</td>
<td>聯系電話</td>
<td>保險單價</td>
<td>保險數量</td>
<td>成人票數</td>
<td>兒童票數</td>
<td>嬰兒票數</td>
<td>付款方式</td>
<td>配送方式</td>
<td>送到地址</td>
<td>送到日期</td>
<td>送到時間</td>
<td>郵寄地址</td>
<td>郵編</td>
<td>自取地址</td>
<td>訂票成功</td>
<td>訂票失敗</td>
<td>操作</td>
</tr>
<logic:present name="destines">
<logic:iterate id="destine" name="destines">
<tr>
<td height="26">${destine.destineId} </td>
<td>${destine.fightNo } </td>
<td>${destine.contactPerson } </td>
<td>${destine.contactPhone } </td>
<td>${destine.insurancePrice } </td>
<td>${destine.insuranceNum } </td>
<td>${destine.adultNum } </td>
<td>${destine.childNum } </td>
<td>${destine.babyNum } </td>
<td>${destine.payStyle } </td>
<td>${destine.distributeStyle } </td>
<logic:notMatch value="null" name="destine" property="sendAddress">
<td><bean:write name="destine" property="sendAddress"/> </td>
</logic:notMatch>
<logic:match value="null" name="destine" property="sendAddress">
<td> </td>
</logic:match>
<logic:notMatch value="null" name="destine" property="sendDate">
<td><bean:write name="destine" property="sendDate"/> </td>
</logic:notMatch>
<logic:match value="null" name="destine" property="sendDate">
<td> </td>
</logic:match>
<logic:notMatch value="null" name="destine" property="sendTime">
<td><bean:write name="destine" property="sendTime"/> </td>
</logic:notMatch>
<logic:match value="null" name="destine" property="sendTime">
<td> </td>
</logic:match>
<logic:notMatch value="null" name="destine" property="postAddress">
<td><bean:write name="destine" property="postAddress"/> </td>
</logic:notMatch>
<logic:match value="null" name="destine" property="postAddress">
<td> </td>
</logic:match>
<logic:notMatch value="null" name="destine" property="post">
<td><bean:write name="destine" property="post"/> </td>
</logic:notMatch>
<logic:match value="null" name="destine" property="post">
<td> </td>
</logic:match>
<logic:notMatch value="null" name="destine" property="takeSelfAddress">
<td><bean:write name="destine" property="takeSelfAddress"/> </td>
</logic:notMatch>
<logic:match value="null" name="destine" property="takeSelfAddress">
<td> </td>
</logic:match>
<td>
<a href="/air/updateOrderStatusAction.do?act=success&did=${destine.destineId}">標記</a>
</td>
<td>
<a href="/air/updateOrderStatusAction.do?act=failure&did=${destine.destineId}">標記</a>
</td>
<td>
<a href="/air/deleteOrderAction.do?did=${destine.destineId}">刪除</a>
</td>
</tr>
</logic:iterate>
</logic:present>
</table>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -