| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title></title>
- </head>
- <body layout:fragment="content">
- <article class="page-container">
- <form class="form form-horizontal" id="form-picture-preview">
- <input type="hidden" id="hiddenId" th:name="id" th:value="${attachment?.id}"/>
- <div class="row cl">
- <div class="formControls col-xs-8 col-sm-12">
- <img th:src="${fileUrl} +${attachment?.file_url}" />
- </div>
- </div>
- <div class="row cl" id="manageRow">
- <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
- <!--<button onClick="removeIframe();" class="btn btn-default radius" type="button"> 返回 </button>-->
- </div>
- </div>
- </form>
- </article>
- <script th:inline="javascript">
- /**
- * 取消
- */
- function removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
- </script>
- </body>
- </html>
|