📄 info.jsp
字号:
<%@ page contentType="text/html;charset=utf-8" errorPage="../../error.jsp" %>
<%@ include file="/page/taglibs.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>广告位详细信息</title>
<link href="css/inside.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="title">
<h2>广告位详细信息</h2>
</div>
<table width="100%" border="0" cellpadding="8" cellspacing="1" class="contentArea">
<tr>
<td class="attachMenu"><strong>广告位信息</strong>
</td>
</tr>
<tr>
<td class="contentList">
<table width="100%" border="0" cellspacing="1" cellpadding="8" class="contentListTable2">
<tr>
<td width="16%" class="contentListTdColName">广告位所在子面页</td>
<td width="84%" class="contentListTd"> ${requestScope.bill.sort.sortName}</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位编号</td>
<td width="84%" class="contentListTd"> ${requestScope.bill.billNo}</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位类型</td>
<td width="84%" class="contentListTd"> ${requestScope.bill.billType.billTypeName}
</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位报价</td>
<td width="84%" class="contentListTd"> ${requestScope.bill.billPrice}</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位状态</td>
<td width="84%" class="contentListTd">
<c:if test="${requestScope.bill.billState=='A'}">闲置</c:if>
<c:if test="${requestScope.bill.billState=='B'}">已预定</c:if>
<c:if test="${requestScope.bill.billState=='C'}">已售出</c:if>
</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位已售出价格</td>
<td width="84%" class="contentListTd">
${requestScope.bill.billBargainMoney}元
</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位已售出时间</td>
<td width="84%" class="contentListTd">
${requestScope.bill.billBargainTime}个月
</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位说明</td>
<td width="84%" class="contentListTd">
${requestScope.bill.billRemark}
</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位所属业务员</td>
<td width="84%" class="contentListTd">
${requestScope.bill.personnel.realname}
</td>
</tr>
<tr>
<td width="16%" class="contentListTdColName">广告位所属客户</td>
<td width="84%" class="contentListTd">
${requestScope.bill.company.nameparticular}
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="lineSpace"></div>
<table width="100%" border="0" cellpadding="8" cellspacing="1" class="contentArea">
<tr>
<td class="attachMenu"><strong>该广告位的订单</strong></td>
</tr>
<tr>
<td class="contentList">
<table width="100%" border="0" cellspacing="1" cellpadding="8" class="contentListTable2 spaceBottom">
<c:forEach items="${requestScope.bill.destineNote}" var="destine">
<tr>
<td width="100" class="contentListTdColName">预定人</td>
<td width="40%" class="contentListTdColName3"> ${destine.personnel.realname }</td>
<td width="100" class="contentListTdColName">预定客户: </td>
<td width="40%" class="contentListTdColName3"> ${destine.company.nameparticular }</td>
<td width="100" class="contentListTdColName">预定日期 </td>
<td width="40%" class="contentListTdColName3"> ${destine.destineDate }</td>
<td width="100" class="contentListTdColName">续定日期 </td>
<td width="40%" class="contentListTdColName3"> ${destine.postponeDate }</td>
</tr>
<tr>
<td width="100" class="contentListTdColName">总时长 </td>
<td width="40%" class="contentListTdColName3"> ${destine.destime }</td>
<td width="100" class="contentListTdColName">结束状态 </td>
<td width="40%" class="contentListTdColName3"> ${destine.ending }</td>
<td width="100" class="contentListTdColName">结束原因 </td>
<td width="40%" class="contentListTdColName3"> ${destine.whys }</td>
<td width="100" class="contentListTdColName">结束日期 </td>
<td width="40%" class="contentListTdColName3"> ${destine.endingDate }</td>
</tr>
</c:forEach>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -