instrument.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="https://www.thymeleaf.org ">
  4. <head>
  5. <meta charset="UTF-8"/>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  8. <title>采美百科-产品百科</title>
  9. <link rel="stylesheet" th:href="@{/css/encyclopedia/normalize.css(v=${version})}"/>
  10. <link rel="stylesheet" th:href="@{/css/encyclopedia/base.css(v=${version})}"/>
  11. <link rel="stylesheet" th:href="@{/css/encyclopedia/common.css(v=${version})}"/>
  12. <link rel="stylesheet" th:href="@{/css/encyclopedia/index.css(v=${version})}"/>
  13. </head>
  14. <body>
  15. <!-- 引用公共头部 -->
  16. <template th:replace="encyclopedia/components/header"></template>
  17. <!-- banner -->
  18. <div class="banner">
  19. <img th:src="${banner.image}" th:alt="${banner.link}"/>
  20. </div>
  21. <!-- 产品 / 仪器分类 -->
  22. <div class="category container" id="category">
  23. <div class="name"><b>产品分类</b><em></em></div>
  24. <div class="category-list" id="category-list"></div>
  25. <div
  26. class="collapse on"
  27. id="hello"
  28. data-collapse-toggle="category"
  29. data-collapse-parent-target="#category"
  30. data-collapse-children-target="#category-list"
  31. >
  32. <span>展开</span>
  33. <i class="icon arrowdown"></i>
  34. </div>
  35. </div>
  36. <!-- 分类楼层 -->
  37. <div class="floor-list">
  38. <div class="floor" th:each="floor : ${typeData}" th:id="${floor}">
  39. <div class="floor-title">
  40. <h2 th:text="${floor.name}"></h2>
  41. <div class="h5-more-btn">
  42. <a th:href="'more-' + ${floor.typeId} + '-1-12.html'">
  43. <span>更多</span>
  44. <i class="icon arrowright"></i>
  45. </a>
  46. </div>
  47. <img src="/img/encyclopedia/01.png" th:alt="${floor.name}"/>
  48. </div>
  49. <article class="article container">
  50. <section class="section" th:each="item,stat : ${floor.productList}" th:object="${item}">
  51. <a th:href="'instrument-' + *{productId} + '.html'">
  52. <div class="cover">
  53. <img th:src="*{image}" th:alt="*{name}"/>
  54. </div>
  55. <div class="content">
  56. <h3 th:text="*{name}"></h3>
  57. <div class="title" th:text="*{discription}"></div>
  58. <div class="question">
  59. <p th:each="question : *{questionList}" th:text="${question}"></p>
  60. </div>
  61. <div class="tag-list">
  62. <span class="tag">常见问题</span>
  63. <span class="tag">效果展示</span>
  64. <span class="tag">技术原理</span>
  65. <span class="tag">术前术后</span>
  66. </div>
  67. <div class="dashed-line"></div>
  68. <footer class="footer">
  69. <time>日期:<span th:text="*{publishTime}"></span></time>
  70. <span>浏览量:<span th:text="*{pv}"></span></span>
  71. </footer>
  72. </div>
  73. </a>
  74. </section>
  75. </article>
  76. <!-- 更多 -->
  77. <div class="more">
  78. <a th:href="'more-' + ${floor.typeId} + '-1-12.html'">
  79. <div class="more-btn">
  80. <span class="">查看更多</span>
  81. <i class="icon arrowdown"></i>
  82. </div>
  83. </a>
  84. </div>
  85. </div>
  86. </div>
  87. <!-- 侧边楼层导航 -->
  88. <aside class="navigate"></aside>
  89. <!-- 引用公共底部 -->
  90. <template th:replace="encyclopedia/components/footer"></template>
  91. <script th:src="@{/js/encyclopedia/index.js(v=${version})}"></script>
  92. </body>
  93. </html>