Explorar el Código

采美百科上测试

喻文俊 hace 3 años
padre
commit
0ea2442aea

+ 1 - 1
src/main/resources/templates/encyclopedia/instrument-detail.html

@@ -41,7 +41,7 @@
             <div class="line"></div>
         </div>
         <div class="content">
-            <p>认证连接:<a th:href="*{authLink}"></a></p>
+            <p>认证连接:<a th:href="*{authLink}" th:text="*{authLink}"></a></p>
             <p>认证二维码</p>
             <div class="img-list">
                 <img th:src="*{authQrCode}" alt="认证二维码"/>

+ 4 - 2
src/main/resources/templates/encyclopedia/instrument.html

@@ -39,8 +39,10 @@
         <div class="floor-title">
             <h2 th:text="${floor.name}"></h2>
             <div class="h5-more-btn">
-                <span>更多</span>
-                <i class="icon arrowright"></i>
+                <a th:href="'more-' + ${floor.typeId} + '-1-12.html'">
+                    <span>更多</span>
+                    <i class="icon arrowright"></i>
+                </a>
             </div>
             <img src="/img/encyclopedia/01.png" th:alt="${floor.name}"/>
         </div>

+ 5 - 3
src/main/resources/templates/encyclopedia/product.html

@@ -35,12 +35,14 @@
 </div>
 <!-- 分类楼层 -->
 <div class="floor-list">
-    <div class="floor" th:each="floor : ${typeData}" th:id="${floor}">
+    <div class="floor" th:each="floor : ${typeData}">
         <div class="floor-title">
             <h2 th:text="${floor.name}"></h2>
             <div class="h5-more-btn">
-                <span>更多</span>
-                <i class="icon arrowright"></i>
+                <a th:href="'more-' + ${floor.typeId} + '-1-12.html'">
+                    <span>更多</span>
+                    <i class="icon arrowright"></i>
+                </a>
             </div>
             <img src="/img/encyclopedia/01.png" th:alt="${floor.name}"/>
         </div>