| 12345678910111213141516171819202122232425262728293031323334353637 |
- <html xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="UTF-8"/>
- <title>问题详情</title>
- </head>
- <body>
- <div>
- <div>
- <div th:each="data:${datas}">
- <h4 th:each="entry:${data}" th:text="${entry.key}"></h4>
- <div th:each="entry : ${data}">
- <div th:each="val:${entry.value}">
- <h5 th:each="ff:${val}" th:text="${ff.key}"></h5>
- <div th:each="ff:${val}">
- <div th:each="v:${ff.value}">
- <p th:text="${v.note}"></p>
- <table>
- <tr th:each="img:${v.fileArrays}">
- <td><img width="550" height="500" th:src="${img}"/></td>
- </tr>
- </table>
- </div>
- </div>
- <br/>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|