📄 detailorder.jsp
字号:
<%@ include file="../sys/sessioncheck.jsp"%><%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>订单明细</title>
<link href="css/1.css" rel="stylesheet" type="text/css">
</head>
<c:set var="list" value="${viewOrderAdv}"/>
<body>
<p><!--webbot bot="Navigation" S-Type="global" S-Orientation="horizontal"
S-Rendering="graphics" B-Include-Home="TRUE" B-Include-Up="FALSE" U-Page
S-Target startspan --><nobr></nobr></p>
<c:url value="/ViewOrderAction.do" var="order">
<c:param name="order_id" value="${list[0].order_id}"/>
</c:url>
<p class="tilte">订单明细:</p>
<input type="hidden" name="order_id" value="<c:out value="${list[0].order_id}"/>">
<table width="458" border="0" cellspacing="1">
<tr>
<td width="87" scope="col">订单号:</td>
<td colspan="3" scope="col"><a href='<c:out value="${order}"/>'/><c:out value="${list[0].order_id}"/></td>
</tr>
<tr>
<td>开始时间:</td>
<td width="124"><c:out value="${list[0].start_time}"/></td>
<td width="101">完成时间:</td>
<td width="118"><c:out value="${list[0].finish_time}"/></td>
</tr>
<tr>
<td>客户名称: </td>
<td colspan="3"><c:out value="${list[0].customer_name}"/></td>
</tr>
<tr>
<td>担当者:</td>
<td colspan="3"><c:out value="${list[0].belongto}"/></td>
</tr>
</table>
<p style="color:#0000FF ">订单招募工种及人数:</p>
<table width="53%" height="52" border="0" cellspacing="1">
<tr bgcolor="#DDDDDD">
<td width="47%" height="20">招募工种</td>
<td width="53%" height="20">预计招募人数</td>
</tr>
<tr bgcolor="#F0F0F0">
<td width="47%" height="20"><c:out value="${list[0].jobtype_name}"/></td>
<td width="53%" height="20"><c:out value="${list[0].number}"/></td>
</tr>
</table>
<p style="color:#0000FF "> 已经收集的人员:</p>
<table width="53%" height="51" border="0" cellspacing="1">
<tr bgcolor="#DDDDDD">
<td width="32%" height="31">工种</td>
<td width="35%" height="31">人数</td>
<td width="33%" height="31"> </td>
</tr>
<tr bgcolor="#F0F0F0">
<td width="32%" height="20"><c:out value="${list[0].jobtype_name}"/></td>
<td width="35%" height="20"><c:out value="${list[0].collected}"/></td>
<c:url value="/showPersonListAction.do" var="collectedp">
<c:param name="order_id" value="${list[0].order_id}"/>
<c:param name="detail" value="yes"/>
</c:url>
<c:choose>
<c:when test="${list[0].collected==0}">
<td width="33%" height="20"><a href="<c:out value='${collectedp}'/>">没有搜集的人</a></td>
</c:when>
<c:otherwise>
<td width="33%" height="20"><a href="<c:out value='${collectedp}'/>">详细</a></td>
</c:otherwise>
</c:choose>
</tr>
</table>
<p> </p>
</body>
<c:remove var="list"/>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -