jcPblmDoc.html 1020 B

12345678910111213141516171819202122232425262728293031323334353637
  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. <div th:each="data:${datas}">
  10. <h4 th:each="entry:${data}" th:text="${entry.key}"></h4>
  11. <div th:each="entry : ${data}">
  12. <div th:each="val:${entry.value}">
  13. <h5 th:each="ff:${val}" th:text="${ff.key}"></h5>
  14. <div th:each="ff:${val}">
  15. <div th:each="v:${ff.value}">
  16. <p th:text="${v.note}"></p>
  17. <table>
  18. <tr th:each="img:${v.fileArrays}">
  19. <td><img width="550" height="500" th:src="${img}"/></td>
  20. </tr>
  21. </table>
  22. </div>
  23. </div>
  24. <br/>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </body>
  31. </html>