2018-09-15 21:46:13 +08:00
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
<head>
|
|
|
|
|
<title>商品列表</title>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
2018-09-16 15:22:24 +08:00
|
|
|
|
<!-- jquery -->
|
|
|
|
|
<script type="text/javascript" th:src="@{/js/jquery.min.js}"></script>
|
|
|
|
|
<!-- bootstrap -->
|
|
|
|
|
<link rel="stylesheet" type="text/css" th:href="@{/bootstrap/css/bootstrap.min.css}" />
|
|
|
|
|
<script type="text/javascript" th:src="@{/bootstrap/js/bootstrap.min.js}"></script>
|
|
|
|
|
<!-- jquery-validator -->
|
|
|
|
|
<script type="text/javascript" th:src="@{/jquery-validation/jquery.validate.min.js}"></script>
|
|
|
|
|
<script type="text/javascript" th:src="@{/jquery-validation/localization/messages_zh.min.js}"></script>
|
|
|
|
|
<!-- layer -->
|
|
|
|
|
<script type="text/javascript" th:src="@{/layer/layer.js}"></script>
|
|
|
|
|
<!-- md5.js -->
|
|
|
|
|
<script type="text/javascript" th:src="@{/js/md5.min.js}"></script>
|
|
|
|
|
<!-- common.js -->
|
|
|
|
|
<script type="text/javascript" th:src="@{/js/common.js}"></script>
|
2018-09-15 21:46:13 +08:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2018-09-16 15:22:24 +08:00
|
|
|
|
|
|
|
|
|
<div class="panel panel-default">
|
|
|
|
|
<div class="panel-heading">秒杀商品列表</div>
|
|
|
|
|
<table class="table" id="goodslist">
|
|
|
|
|
<tr><td>商品名称</td><td>商品图片</td><td>商品原价</td><td>秒杀价</td><td>库存数量</td><td>详情</td></tr>
|
|
|
|
|
<tr th:each="goods,goodsStat : ${goodsList}">
|
|
|
|
|
<td th:text="${goods.goodsName}"></td>
|
|
|
|
|
<td ><img th:src="@{${goods.goodsImg}}" width="100" height="100" /></td>
|
|
|
|
|
<td th:text="${goods.goodsPrice}"></td>
|
|
|
|
|
<td th:text="${goods.miaoshaPrice}"></td>
|
|
|
|
|
<td th:text="${goods.stockCount}"></td>
|
|
|
|
|
<td><a th:href="'/goods_detail.htm?goodsId='+${goods.id}">详情</a></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2018-09-15 21:46:13 +08:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|