pblmDoc.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <html xmlns:th="http://www.thymeleaf.org">
  2. <head>
  3. <meta charset="UTF-8"/>
  4. <title>问题详情</title>
  5. </head>
  6. <body>
  7. <div>
  8. <div>
  9. <h3 th:text="${objName}"></h3>
  10. <div th:each="data:${datas}">
  11. <h4 th:each="entry:${data}" th:text="${entry.key}"></h4>
  12. <div th:each="entry : ${data}">
  13. <div th:each="val:${entry.value}">
  14. <h5 th:each="ff:${val}" th:text="${ff.key}"></h5>
  15. <div th:each="ff:${val}">
  16. <div th:each="v:${ff.value}">
  17. <p th:text="${v.note}"></p>
  18. <table>
  19. <tr th:each="img:${v.fileArrays}">
  20. <td><img width="550" height="500" th:src="${img}"/></td>
  21. </tr>
  22. </table>
  23. </div>
  24. </div>
  25. <br/>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. </body>
  32. </html>