| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <title>公告详情</title>
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!--标准mui.css-->
- <link rel="stylesheet" href="../css/mui.min.css">
- <!--App自定义的css-->
- <!--<link rel="stylesheet" type="text/css" href="css/app.css" />-->
- <style>
- .mui-table h4,
- .mui-table h5,
- .mui-table .mui-h5,
- .mui-table .mui-h6,
- .mui-table p {
- margin-top: 0;
- }
-
- .mui-table h4 {
- line-height: 21px;
- font-weight: 500;
- }
-
- .mui-table .oa-icon {
- position: absolute;
- right: 0;
- bottom: 0;
- }
-
- .mui-table .oa-icon-star-filled {
- color: #f14e41;
- }
-
- .mui-bar-nav {
- background-color: #00a1cb;
- color: #fff;
- }
-
- .mui-bar-nav h1 {
- color: #fff;
- }
-
- .Messge {
- font-size: 12px;
- margin-top: 10px;
- margin-bottom: 10px;
- color: #8f8f94;
- text-align: center;
- }
-
- .Title {
- text-align: center;
- }
-
- .mui-content {
- background-color: #fff;
- }
-
- body {
- background: #FFF;
- }
-
- .hy_loading {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, .3);
- z-index: 9998;
- transition: all .2s;
- }
-
- .hy_loading .loading_img {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- overflow: hidden;
- margin: auto;
- width: 60px;
- height: 24px;
- z-index: 9999;
- }
- </style>
- </head>
- <body>
- <div class="hy_loading" id="hy_loading">
- <img class="loading_img" src="../images/loading-0.gif" alt="加载中" />
- </div>
- <div class="mui-content">
- <div class="" style="padding: 15px 10px;">
- <h4 class="Title"></h4>
- <div class="Messge">
- <span class="FBR" style="margin-right: 10px;"></span><span class="Times"></span>
- </div>
- <p class="Content" style=" text-indent:28px"></p>
- </div>
- <span></span>
- </div>
- </body>
- <script src="../js/zepto.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <script src="../Script/Common/huayi.http.js"></script>
- <script src="../js/mui.min.js"></script>
- <script>
- mui.init();
- var index = helper.request.queryString("index"); //手机号
- $.ajax({
- type: "get",
- url: huayi.config.callcenter_url + 'Notice/GetNotice',
- dataType: 'json', //服务器返回json格式数据
- data: {
- noticeid: index,
- openid: helper.cookies.get("openid"),
- },
- success: function(data) {
- if(document.getElementById('hy_loading')) {
- document.getElementById('hy_loading').style.opacity = 0;
- document.getElementById('hy_loading').remove();
- }
- var time = data.data.F_CreateOn.substring(0, data.data.F_CreateOn.indexOf(' '));
- $(".Title").text(data.data.F_Title);
- $(".Content").text(data.data.F_Content);
- $(".FBR").text('发布人:' + data.data.F_CreateByName);
- $(".Times").text('发布日期:' + time);
- },
- })
- </script>
- </html>
|