| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!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 action="" method="post" class="form form-horizontal" id="form-message-check" th:object="${message}">
- <input type="hidden" th:name="id" th:value="*{id}" th:id="id">
- <div class="row cl">
- <h5 style="text-align: center;">
- [[*{title}]]
- </h5>
- </div>
- <div class="row cl">
- <div class="col-sm-12 col-md-12 col-lg-12">
- <div class="centerContent" style="padding-top: 20px;">
- [[*{content}]]
- </div>
- </div>
- </div>
- <div class="row cl">
- <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-3">
- <button onClick="removeIframe();" class="btn btn-default radius" type="button"> 返回 </button>
- </div>
- </div>
- </form>
- </article>
- <script th:inline="javascript">
- $(function(){
- //重新加载父页面消息 或 更新父页面消息为已读
- var id = $("#id").val();
- if(parent.reloadMessage){
- parent.reloadMessage(id);
- }
- });
-
- /**
- * 取消
- */
- function removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
- </script>
- </body>
- </html>
|