| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <div th:replace="~{mobile/header :: header}"></div>
- <body>
- <!-- 内容 -->
- <section class="container">
- <div class="header">
- <img th:src="@{/assets/logo.png}">
- <h1 class="title">苏州高新区企业创新发展平台</h1>
- </div>
- <div class="content has_footer">
- <div class="data_header">通知公告</div>
- <div class="data_list">
- <ul id="notifyContent">
- </ul>
- </div>
- </div>
- </section>
- <!-- 底部 -->
- <div class="bottom-fxied">
- <footer>
- <span>
- <a th:href="@{/mobile/home}" class="active">
- <i class="iconfont icon-shouye"></i>
- <div>首页</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/company/companyPage}" >
- <i class="iconfont icon-enterprise"></i>
- <div>产品</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/service}">
- <i class="iconfont icon-msnui-service"></i>
- <div>服务</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/account}">
- <i class="iconfont icon-wo"></i>
- <div>我</div>
- </a>
- </span>
- </footer>
- </div>
- </body>
- <script type="text/javascript">
- $(document).ready(function(){
- $.ajax({
- type: "POST",
- dataType: "json",
- url: pagePath+"/mobile/home/getInfo",
- data: {
- "timestamp": new Date().getTime()
- },
- success: function (result) {
- if (result.success) {
- for(var i=0;i<result.obj.notifyList.length;i++){
-
- var notify=result.obj.notifyList[i]
-
- var html='<li><span class=""> <a href='+pagePath+'/mobile/notify/noticeDetailPage?notifyId='+notify.id+'¬ifyDetailId='+notify.notify_detail_id+'>';
- html+='【公告】'+notify.title+'</a> </span>';
- html+='<span class="">'+notify.create_time+'</span></li>';
- var $html=$(html);
- $("#notifyContent").append($html);
- }
- } else {
- alert(result.message);
- }
- },
- error: function () {
-
- }
- });
-
-
- });
- </script>
- </html>
|