?? fightmanage.jsp
字號:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ 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>
<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="835" height="96" border="1" align="center">
<tr>
<th colspan="15" scope="col"><div align="left"><span class="STYLE1">航班管理</span></div></th>
</tr>
<tr>
<td width="36" height="43"><div align="center">編號</div></td>
<th width="74" scope="col">出發日期</th>
<th width="97" scope="col">航空公司</th>
<th width="74" scope="col">航班號</th>
<th width="87" scope="col">出發城市</th>
<th width="90" scope="col">到達城市</th>
<th width="87" scope="col">起飛時間</th>
<th width="90" scope="col">到達時間</th>
<th width="70" scope="col">原價</th>
<th width="65" scope="col">艙位/票數/價格</th>
<th width="68" scope="col">建設/燃油</th>
<td width="31"><div align="center">操作</div></td>
</tr>
<logic:present name="fights">
<logic:iterate id="fight" name="fights">
<tr>
<td><a href="/air/editFightAction.do?fid=${fight.fightId }">${fight.fightId } </td>
<td>${fight.leaveDate } </td>
<td>${fight.fightName } </td>
<td>${fight.fightNo } </td>
<td>${fight.leaveCity } </td>
<td>${fight.arriveCity } </td>
<td>${fight.leaveTime } </td>
<td>${fight.arriveTime } </td>
<td>${fight.price} </td>
<td>
<select name="engine">
<option>特價艙/${fight.specialNum}/${0.5*fight.price}</option>
<option>經濟艙/${fight.economicNum}/${0.7*fight.price}</option>
<option>公務艙/${fight.businessNum}/${0.8*fight.price}</option>
<option>頭等艙/${fight.headNum}/${fight.price}</option>
</select>
</td>
<td>${fight.fuelRate }/${fight.buildRate } </td>
<td><a href="/air/deleteFightAction.do?fid=${fight.fightId }">刪除</a> </td>
</tr>
</logic:iterate>
</logic:present>
</table>
<table>
<tr><td><a href="/air/addFightAction.do">添加航班信息</a></td></tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -