goodsshow.jsp

来自「基于j2ee的物流软件」· JSP 代码 · 共 122 行

JSP
122
字号
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<base href="<%=basePath%>">

		<title>货物浏览</title>

		<meta http-equiv="pragma" content="no-cache">
		<meta http-equiv="cache-control" content="no-cache">
		<meta http-equiv="expires" content="0">
		<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
		<meta http-equiv="description" content="This is my page">
		<link rel="stylesheet" type="text/css" href="employee/css/style.css">
		<script type="text/javascript" src="employee/js/goods.js"></script>

	</head>
	<body topMargin=0 leftmargin="0" marginheight="0">
		<form action="" method="post">
			<table border=1 width="97%" cellspacing=1 cellpadding=3 align=center
				bordercolor="#326598">
				<tr bgcolor="#e8f4ff">
					<td height=25 colspan="15" background="admin/images/tile_sub.gif">
						货源信息-&gt;货源浏览
					</td>
				</tr>
				<tr>
					<td>
						编号
					</td>
					<td>
						名称
					</td>
					<td>
						发货人编号
					</td>
					<td>
						收货人编号
					</td>
					<td>
						始发地
					</td>
					<td>
						目的地
					</td>
					<td>
						ABC分类
					</td>
					<td>
						仓库编号
					</td>
					<td>
						所在仓库位置编号
					</td>
					<td>
						状态
					</td>
				</tr>
				<c:forEach var="goods" items="${requestScope.list}">
					<tr>
						<td>
							<a href="seegoods.do?goodsid=${goods.goodsId}">${goods.goodsId}</a>
						</td>
						<td>
							${goods.goodsName}
						</td>
						<td>
							<a href="seeconsigner.do?consignerId=${goods.goodsConsignerId}">${goods.goodsConsignerId}</a>
						</td>
						<td>
							<a href="seeconsignee.do?consigneeId=${goods.goodsConsigneeId}">${goods.goodsConsigneeId}</a>
						</td>
						<td>
							${goods.goodsStart}
						</td>
						<td>
							${goods.goodsAim}
						</td>
						<td>
							${goods.goodsABC}&nbsp;
						</td>
						<td>
							<a
								href="seehouse.do?houseid=${goods.goodsStockId}&houseregion=${goods.goodsStockRegionId}">${goods.goodsStockId}</a>
						</td>
						<td>
							${goods.goodsStockRegionId}
						</td>
						<td>
							${goods.goodsState}
						</td>
					</tr>
				</c:forEach>
				<tr>
					<td colspan="10" align="right">
						&nbsp; [
						<a href="goodsshow.do?page=0">首页</a>]&nbsp;
						[<a href="goodsshow.do?page=${requestScope.forward }">上一页</a>]&nbsp;
						[<a href="goodsshow.do?page=${requestScope.back }">下一页</a>]&nbsp;
						[<a href="goodsshow.do?page=${requestScope.end }">尾页</a>]&nbsp;
						[${requestScope.now }]/[${requestScope.count }]页
						<input type="button" value="增加货源"
							onclick="javascript:window.location.href='newgoods.do'" />
						&nbsp;
						<input type="button" value="返回"
							onclick="javascript:history.back()">
						&nbsp;
					</td>
				</tr>
			</table>
		</form>
	</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?