1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>Document</title>
- </head>
- <body>
- <div th:fragment="setmeal" class="zskk-setmeal">
- <div class="zskk-content">
- <section class="zskk-title">
- <span class="zskk-info" th:each="sysLabel: ${sysLabels}" th:text="${sysLabel.name}"></span>
- <ul>
- <li th:each="sysLabel: ${sysLabels}">
- <a th:href="@{/shop(headkey=3, label=${sysLabel.id})}" th:text="${sysLabel.name}"></a>
- </li>
- <li >
- <a href="/shop?headkey=3" >更多...</a>
- </li>
- </ul>
- </section>
- <section class="zskk-list" th:each="sysLabel: ${sysLabels}">
- <a class="zskk-oneInfo" th:each="good: ${sysLabel.goods}" th:attr="href='/good/detail/' + ${good.gid}">
- <img th:attr="src=${good.icon}" alt="" />
- <div class="zskk-name" th:text="${good.name}"></div>
- <div class="zskk-price">
- <div class="zskk-prices">
- <span class="zskk-now-prices" th:text="'¥' + ${good.price.price}"></span>
- <span class="zskk-original-prices" th:text="'¥' + ${good.price.discountPrice}"></span>
- </div>
- <div class="zskk-discount">
- <span th:text="${good.price.discount} + '折'"></span>
- </div>
- </div>
- </a>
- </section>
- </div>
- </div>
- </body>
- </html>
|