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

📄 fightmanage.jsp

📁 主要是航空预订系统
💻 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 }&nbsp;</td>
    <td>${fight.leaveDate }&nbsp;</td>
    <td>${fight.fightName }&nbsp;</td>
    <td>${fight.fightNo }&nbsp;</td>
    <td>${fight.leaveCity }&nbsp;</td>
    <td>${fight.arriveCity }&nbsp;</td>
    <td>${fight.leaveTime }&nbsp;</td>
    <td>${fight.arriveTime }&nbsp;</td>
    <td>${fight.price}&nbsp;</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 }&nbsp;</td>
    <td><a href="/air/deleteFightAction.do?fid=${fight.fightId }">删除</a>&nbsp;</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 + -