📄 orderlist.jsp
字号:
<%@ page language="java" import="com.pure.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<jsp:include page="../inc/pageHead.jsp" />
<form name="order" method="post" action="<c:url value="/admin/order/orderList.jspx"/>">
<input type="hidden" name="page" value="${cpage}">
<input type="hidden" name="curAction">
<table width="100%" border="0" cellpadding="0" cellspacing="0"
bgcolor="#FFFFFF">
<tr>
<td width="5"> </td>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30" align="center" class="bigTitle">订单信息管理</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<!--数据表主体开始-->
<table width="100%" border="0" cellpadding="2" cellspacing="1"
class="tableData" id="tableData">
<tr>
<th width="3%" align="center"><input type="checkbox" name="chkall" value="on" onclick="CheckAll(this.form)" title="选择/取消" style="cursor:hand"></th>
<th width="12%">订购时间</th>
<th width="8%">订购人</th>
<th>公司地址</th>
<th width="15%">E-Mail</th>
<th width="8%">电 话</th>
<th width="8%">手 机</th>
<th width="6%">状 态</th>
<th width="8%">操 作</th>
</tr>
<c:if test="${empty orderList}"><script>noData();</script></c:if>
<c:forEach var="orderItem" items="${orderList}">
<tr <%=PureUtil.trBgcolorMouseOverAndMouseOut()%>>
<td align="center"><input type="checkbox" name="id" value="${orderItem.id}" style="cursor:hand"></td>
<td>${orderItem.orderDate}</td>
<td>${orderItem.newname}</td>
<td>${orderItem.newaddress}</td>
<td>${orderItem.newemail}</td>
<td>${orderItem.newtel}</td>
<td>${orderItem.newhandset}</td>
<td align="center">
<c:if test="${orderItem.state}">
<img src="<c:url value="/admin/images/y.gif"/>" border="0" alt="已处理">
</c:if>
</td>
<td align="center"><a href="<c:url value="/admin/member/memberList.jspx"/>?curAction=del&id=<c:out value="${orderItem.id}"/>"><img src="<c:url value="/admin/images/del.gif"/>" border="0" alt="删 除"></a> <img src="<c:url value="/admin/images/view.gif"/>" border="0" alt="查看详细信息" onclick="javascript:location.href='<c:url value="/admin/order/viewOrder.jspx"/>?id=${orderItem.id}'" class="image_button"></td>
</tr>
</c:forEach>
</table>
<!--数据表主体结束-->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="35"><img src="../images/del_bt.gif" width="44"
height="20" onmouseover="this.src='../images/del_bt_over.gif'"
onmouseout="this.src='../images/del_bt.gif'" class="image_button"
onclick="action_del(document.forms[0],'是否确定删除选中的数据?','del','','id');"> <img src="../images/setting_bt.gif" width="44"
height="20" onmouseover="this.src='../images/setting_bt_over.gif'"
onmouseout="this.src='../images/setting_bt.gif'" class="image_button"
onclick="action_confirm(document.forms[0],'是否确定设置选中的数据?','setting','','id');"></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25"><c:out value="${page}" escapeXml="false" /></td>
</tr>
</table>
</td>
<td width="5"> </td>
</tr>
</table>
</form>
<jsp:include page="../inc/pageFoot.jsp" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -