Initial commit
This commit is contained in:
72
web/goodsList.jsp
Normal file
72
web/goodsList.jsp
Normal file
@@ -0,0 +1,72 @@
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ page language="java" contentType="text/html; charset=utf-8"
|
||||
pageEncoding="utf-8"%>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>商品列表页</title>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<%@ include file="header.jsp"%>
|
||||
|
||||
|
||||
<div class="panel panel-default" style="margin: 0 auto;width: 95%;">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><span class="glyphicon glyphicon-th-list"></span> 商品列表</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<!--列表开始-->
|
||||
<div class="row" style="margin: 0 auto;">
|
||||
<c:forEach items="${pageBean.list}" var="g" varStatus="i">
|
||||
<div class="col-sm-3">
|
||||
<div class="thumbnail">
|
||||
<img src="${pageContext.request.contextPath}/${g.pimage}" width="180" height="180" alt="小米6" />
|
||||
<div class="caption">
|
||||
<h4>商品名称<a href="${pageContext.request.contextPath}/product?method=detail&pid=${g.pid}">${g.pname}</a></h4>
|
||||
<p>热销指数
|
||||
<c:forEach begin="1" end="${g.pstate}">
|
||||
<img src="image/star_red.gif" alt="star"/>
|
||||
</c:forEach>
|
||||
</p>
|
||||
<p>上架日期:${g.ptime}</p>
|
||||
<p style="color:orange">价格:${g.pprice}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
|
||||
</div>
|
||||
<center>
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
<li class="${pageBean.currentPage==1?'disabled':''}">
|
||||
<a href="product?method=show&tid=${param.tid}¤tPage=${pageBean.currentPage-1}" aria-label="Previous">
|
||||
<span aria-hidden="true">«</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<c:forEach begin="1" end="${pageBean.totalPage}" step="1" var="index">
|
||||
<c:if test="${pageBean.currentPage==index}">
|
||||
<li class="active"><a href="product?method=show&tid=${param.tid}¤tPage=${index}">${index}</a></li>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${pageBean.currentPage!=index}">
|
||||
<li ><a href="product?method=show&tid=${param.tid}¤tPage=${index}">${index}</a></li>
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
|
||||
<li class="${pageBean.currentPage==pageBean.totalPage?'disabled':''}">
|
||||
<a href="product?method=show&tid=${param.tid}¤tPage=${pageBean.currentPage+1}" aria-label="Next">
|
||||
<span aria-hidden="true">»</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 底部 -->
|
||||
<%@ include file="footer.jsp"%>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user