picture_preview.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{admin/common/common}">
  5. <head>
  6. <title></title>
  7. </head>
  8. <body layout:fragment="content">
  9. <article class="page-container">
  10. <form class="form form-horizontal" id="form-picture-preview">
  11. <input type="hidden" id="hiddenId" th:name="id" th:value="${attachment?.id}"/>
  12. <div class="row cl">
  13. <div class="formControls col-xs-8 col-sm-12">
  14. <img th:src="${fileUrl} +${attachment?.file_url}" />
  15. </div>
  16. </div>
  17. <div class="row cl" id="manageRow">
  18. <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
  19. <!--<button onClick="removeIframe();" class="btn btn-default radius" type="button">&nbsp;&nbsp;返回&nbsp;&nbsp;</button>-->
  20. </div>
  21. </div>
  22. </form>
  23. </article>
  24. <script th:inline="javascript">
  25. /**
  26. * 取消
  27. */
  28. function removeIframe() {
  29. var index = parent.layer.getFrameIndex(window.name);
  30. parent.layer.close(index);
  31. }
  32. </script>
  33. </body>
  34. </html>