后台jsp goodsList.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<base href="<%=basePath%>">

<title></title>

<link rel="stylesheet" href="admin/css/basic.css" type="text/css" />
<link rel="stylesheet" href="admin/css/list.css" type="text/css" />
<script type="text/javascript" src="admin/js/goodsList.js"></script>
</head>

<body>
	<form action="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=${pageIndex}" method="post">
		<div class="show" style=" height:162px; display: none; " id="show">

		</div>
	</form>

	<div class="list">
		<table cellpadding="0" cellspacing="0">
			<tr class="search">
				<td colspan="10">
					<form action="goodsList?substance=" method="get">
						<input type="hidden" name="substance" value="${substance}" /> <select
							name="statusNum">
							<option value="1">---默认---</option>
							<option value="1"
								<c:if test="${statusNum eq '1' }">selected="selected"</c:if>>按时间排序</option>
							<option value="2"
								<c:if test="${statusNum eq '2' }">selected="selected"</c:if>>按库存排序</option>
							<option value="3"
								<c:if test="${statusNum eq '3' }">selected="selected"</c:if>>按价格排序</option>
						</select> <input type="submit" class="submit" value="确定" />
					</form>
					<form action="goodsList" method="get">
						<input type="hidden" name="statusNum" value="${statusNum}" /> <input
							type="text" class="text" name="substance" value="${substance}" />
						<input type="submit" class="submit" value="搜索" />
					</form></td>
			</tr>
			<tr class="title">
				<td>商品编号</td>
				<td>商品类型</td>
				<td>商品品牌</td>
				<td>商品图</td>
				<td>商品价格</td>
				<td>商品库存</td>
				<td>上架时间</td>
				<td>商品状态</td>
				<td>上架/下架</td>
				<td>操作</td>
			</tr>
			<c:forEach var="item" items="${pList }" varStatus="i">
				<tr οndblclick="javascript:showSql('${item.products_id }');" class="content <c:if test="${i.index %2 ne 0 }">colorBg</c:if>">
					<td>${item.products_id }</td>
					<td>${item.classify }</td>
					<td>${item.brand }</td>
					<td><a href="goods?id=${item.products_id}" target="_blank"
						title="${item.introduce} 分类:${item.classify} 品牌:${item.brand} 型号: ${item.model}"><img
							src="images/share/${item.print}" width="26" height="20" /> </a></td>
					<td><input type="text" value="${item.price }"
						οnblur="javascript:ajaxUpdatePrice('${item.products_id }',this);"
						style="width:60px;" />
					</td>
					<td><input type="text" value="${item.number }"
						οnblur="javascript:ajaxUpdateNumber('${item.products_id }',this);"
						style="width:42px;" />
					</td>
					<td>${fn:substring(item.time,0,10)}</td>
					<td>${item.status_content }</td>
					<td><c:if test="${item.grounding eq '0' }">
							<img src="admin/images/grounding.png" width="22" height="22" />
						</c:if> <c:if test="${item.grounding eq '1' }">
							<img src="admin/images/undercarriage.png" width="22" height="22" />
						</c:if></td>
					<td><a href="goodsUpdate?id=${item.products_id }"><img
							src="admin/images/tool.png" width="22" height="22" /> </a>&nbsp;<a
						href="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=${pageIndex}&id=${item.products_id }&grounding=0"><img
							src="admin/images/grounding.png" width="22" height="22" /> </a>&nbsp;<a
						href="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=${pageIndex}&id=${item.products_id }&grounding=1"><img
							src="admin/images/undercarriage.png" width="22" height="22" /> </a>
					</td>
				</tr>
			</c:forEach>
			<tr class="page">
				<td colspan="10"><em class="f_r"> <a
						href="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=1">首页</a>
						<a
						href="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=${pageIndex-1}">上一页</a>
						<a
						href="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=${pageIndex+1}">下一页</a>
						<a
						href="goodsList?substance=${substance }&statusNum=${statusNum }&pageIndex=${end}">尾页</a>
				</em><i>共${totalCount}条数据(共有${end}页,现在是第${pageIndex}页) </i>
				</td>
			</tr>
		</table>
	</div>
</body>
</html>

 

/* CSS Document */
.submit{ background:#f7661f; color:#fff; text-align:center; width:46px; height:21px; line-height:21px; border:none; border-radius:3px; font-family:"Arial";}
.submit:hover{ background:#ff971c;}

.show{ width:1100px; margin:0 auto;}
.show table{ width:1100px; background:#FFF; border-top:1px solid #ccc; border-left:1px solid #ccc; position:fixed;top:0;margin:0 auto;}
.show table td{ height:21px; text-align:center; border-bottom:1px solid #ccc; border-right:1px solid #ccc;}
.show table .explain td{ background:#f4f4f4; font-family:"微软雅黑"; color:#333; font-weight:bold;}
.show table .item .key{ background:#436da8; color:#fff; font-family:"微软雅黑";}
.show table .item .value{ color:#333; font-family:"微软雅黑";}
.show table .item .value input{ color:#c00; border:none; font-family:"微软雅黑";}
.show table .item .value select{ color:#c00; border:none; font-family:"微软雅黑";}
.show table .item .value select option{ color:#c00; border:none; font-family:"微软雅黑";}
.show table .update td{ height:28px; padding-right:10px;}


.list{ width:1100px; padding-bottom:50px; padding-top:13px; margin:0 auto;}

.list table{width:100%; border:1px solid #ccc;}
.search{ background:#f4f4f4; height:34px;}
.search form{ display:inline; margin-left:10px; margin-right:8px;}
.search .text{ border:1px solid #ccc; height:18px; line-height:18px; padding-left:6px; font-family:"Arial"; width:80px;}
.search select{ border:1px solid #ccc; height:21px; line-height:18px;}
.title td{ background:#436da8; color:#fff; font-family:"微软雅黑"; text-align:center; height:24px; line-height:24px;}
.content td{  color:#333; font-family:"微软雅黑"; text-align:center; height:36px; line-height:24px;}
.content:hover td{ background:#ff971c; color:#000;}
.content td input{ color:#c00; border:none; font-family:"微软雅黑"; padding-left:4px;}
.content td select{ color:#c00; border:none; font-family:"微软雅黑";}
.content td option{ color:#c00; border:none; font-family:"微软雅黑";}
.colorBg td{ background:#f5f5f5;}
.page{ height:30px; }
.page td{ padding-left:10px; padding-right:10px; border-top:1px solid #436da8;}
.page td em{ margin-right:8px;}
.page td em a{ border:1px solid #eee; color:#666; padding:2px 3px; margin-left:8px; font-family:"Arial";}
.page td em a:hover{ color:#f60;  border:1px solid #f60;}
.page td i{ color:#999; font-family:"微软雅黑"; padding-left:8px;}

 

//JavaScript Document

function $(id){  
	return document.getElementById(id);  
} 

function showSql(id){
	var show = $("show");
	show.style.display='block';
	show.innerHTML="";
	var xmlHttp = new XMLHttpRequest();
	var url = "ajaxGoodsList?id="+escape(id);
	xmlHttp.open("GET", url);//设置一个请求
	xmlHttp.onreadystatechange = function() {	//设置请求完成之后处理的回调函数  
		if (xmlHttp.readyState == 4) {//数据返回完毕  
			if (xmlHttp.status == 200) {//HTTP操作正常  
				var text = xmlHttp.responseText;//接收返回的内容  
				show.innerHTML=text;
			}
		}
	};
	xmlHttp.send(null);//发送请求,不传递任何参数  	
}

function ajaxUpdatePrice(id,obj){
	var xmlHttp = new XMLHttpRequest();
	var url = "ajaxUpdatePrice?id="+escape(id)+"&price="+escape(obj.value);
	xmlHttp.open("GET", url);//设置一个请求
	xmlHttp.onreadystatechange = function() {	//设置请求完成之后处理的回调函数  
		if (xmlHttp.readyState == 4) {//数据返回完毕  
			if (xmlHttp.status == 200) {//HTTP操作正常  
				var text = xmlHttp.responseText;//接收返回的内容  
				alert(text);
			}
		}
	};
	xmlHttp.send(null);//发送请求,不传递任何参数  	
}

function ajaxUpdateNumber(id,obj){
	var xmlHttp = new XMLHttpRequest();
	var url = "ajaxUpdateNumber?id="+escape(id)+"&number="+escape(obj.value);
	xmlHttp.open("GET", url);//设置一个请求
	xmlHttp.onreadystatechange = function() {	//设置请求完成之后处理的回调函数  
		if (xmlHttp.readyState == 4) {//数据返回完毕  
			if (xmlHttp.status == 200) {//HTTP操作正常  
				var text = xmlHttp.responseText;//接收返回的内容  
				alert(text);
			}
		}
	};
	xmlHttp.send(null);//发送请求,不传递任何参数  	
}

 

效果图:

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值