agg_report.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" xmlns:th="http://www.thymeleaf.org">
  3. <ul class="list-group" style="max-width: 300px;">
  4. <li class="list-group-item" style="background-color: rgb(227, 100, 2); color: white;">
  5. <b>
  6. <i class="fa fa-object-group" style="margin-right: 5px;"></i>
  7. <span th:text="${aggReportId}"></span>
  8. </b>
  9. </li>
  10. <!-- <li class="list-group-item">
  11. <b>Type: </b>
  12. <label class="label" style="background-color: rgb(227, 100, 2);">
  13. <span class="glyphicon glyphicon-duplicate" style="margin-right: 5px;"></span>
  14. Aggregated Report
  15. </label>
  16. </li> -->
  17. <li class="list-group-item">
  18. <b>主要点 <span class="glyphicon glyphicon-star" style="color: rgb(244, 172, 7); margin-right: 5px;"></span></b>
  19. <span th:text="${masterReport.description}"></span><br />
  20. </li>
  21. <li class="list-group-item">
  22. <b>补充点: </b><br />
  23. <ul class="list-group sup-list" style="max-width: 290px;">
  24. <th:block th:each="supplement : ${supplements}">
  25. <li class="list-group-item">
  26. <span class="glyphicon glyphicon-duplicate" style="color: rgb(25, 149, 207); margin-right: 5px;"></span>
  27. <a href="#" style="color: #2F94C3;" th:text="${supplement.getSupplementId()}"></a>
  28. <span th:if="${supplement.hasTxt}"
  29. th:text="'...' + ${supplement.topTxt} + '...'"></span>
  30. <img th:if="${!supplement.hasTxt}" class="my-img-thumbnail pointer"
  31. th:src="${imgUrl}" th:each="imgUrl,iterStat : ${supplement.top3Img}"
  32. th:onclick="'javascript:showimage(\''+${imgUrl}+'\');'"/>
  33. </li>
  34. </th:block>
  35. </ul>
  36. </li>
  37. </ul>
  38. </html>