123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="UTF-8">
- <link th:href="@{/css/article/drawer-footer.css(v=${version})}" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <input type="hidden" th:value="${coreServer}" id="coreServer">
- <input type="hidden" th:value="${agent}" id="userAgent">
- <div id="drawer-footer">
- <div class="hot-recommend">
- <div class="hot-recommend-title">
- <div>热门推荐</div>
- <div>
- <a></a>
- </div>
- </div>
- <div class="hot-recommend-content">
- <div class="hot-recommend-content-item" v-for="item in recommend.list">
- <div>
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
- <img :src="item.image"/>
- </a>
- </div>
- <div>
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
- <p class="shuoming" v-html="item.title"></p>
- </a>
- </div>
- </div>
- </div>
- </div>
- <div class="hot-recommend">
- <div class="hot-recommend-title">
- <div>你可能感兴趣的商品</div>
- <div>
- <a>更多 ></a>
- </div>
- </div>
- <div class="hot-recommend-content">
- <div class="hot-recommend-content-item" th:each="product: ${productSellNumbers}">
- <div>
- <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
- <img th:src="product.image" style="width: 100%;height: 100%;object-fit: contain;" />
- </a>
- </div>
- <div th:text="${product.name}"></div>
- </div>
- </div>
- </div>
- <div class="hot-recommend">
- <div class="hot-recommend-title">
- <div>您可能感兴趣的美业资料</div>
- <div>
- <a></a>
- </div>
- </div>
- <div class="hot-recommend-content">
- <div class="hot-recommend-content-item" th:each="product: ${productSellNumbers}">
- <div>
- <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
- <img src="/img/article/PC--pdf.png" style="width: 100%;height: 100%;object-fit: contain;" />
- </a>
- </div>
- <div th:text="${product.name}"></div>
- </div>
- </div>
- </div>
- </div>
- <!-- 广告-->
- <div class="advertisement">
- <a class="advertisement-link" th:each="ad : ${ads}" th:href="${ad.link}">
- <img th:src="${ad.image}" th:alt="${ad.title}" class="advertisement-img"/>
- </a>
- </div>
- <script charset="utf-8" type="text/javascript" src="https://cdn.jsdelivr.net/npm/vue@2"></script>
- <script charset="utf-8" type="text/javascript" th:src="@{/js/article/drawer-footer.js}"></script>
- </body>
- </html>
|