Nenhuma Descrição

AnnD.html 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>公告管理</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <script src="../Script/Common/huayi.load.js"></script>
  8. <script src="../Script/Common/huayi.config.js"></script>
  9. <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
  10. <link href="../css/WorkOrder/Search.css" rel="stylesheet">
  11. <link href="../css/init.css" rel="stylesheet" />
  12. <style>
  13. table td {
  14. word-break: break-all;
  15. word-wrap: break-word;
  16. }
  17. .ld-service li {
  18. float: left;
  19. font-size: 14px;
  20. color: #000;
  21. padding: 5px 15px;
  22. cursor: pointer;
  23. border-bottom: 1px solid #ccc;
  24. }
  25. .cr-click {
  26. border: 1px solid #ccc;
  27. background-color: #fff;
  28. border-bottom: none !important;
  29. border-bottom-left-radius: 5px;
  30. border-bottom-right-radius: 5px;
  31. }
  32. .Shows {
  33. display: block !important;
  34. }
  35. .complain {
  36. display: none;
  37. }
  38. th {
  39. padding: 5px;
  40. text-align: center;
  41. }
  42. td {
  43. padding: 5px;
  44. }
  45. .Borders {
  46. border: 1px solid #d7d7d7;
  47. }
  48. .cx {
  49. display: block;
  50. }
  51. span {
  52. margin-right: 10px;
  53. }
  54. .Content {
  55. padding: 10px;
  56. margin: 0 auto;
  57. width: 30%;
  58. }
  59. #content {
  60. width: 80%;
  61. margin: 0 auto;
  62. }
  63. </style>
  64. </head>
  65. <body class="gray-bg">
  66. <div class="wrapper wrapper-content animated fadeInRight">
  67. <div class="daoHang clearfix">
  68. <div class="dhLeft">
  69. <sapn>
  70. <i class="syIcon"></i>位置:
  71. <a href="javaScript:;" id="ReIndex">首页</a>&gt;
  72. <a href="javaScript:;">信息管理</a>&gt;
  73. <a href="javaScript:;" id="reback">公告管理</a>&gt;
  74. <a href="" style="color: black;">公告管理详情</a>
  75. </sapn>
  76. </div>
  77. </div>
  78. <table border="0" cellspacing="" cellpadding="" style="width: 100%;">
  79. <tr>
  80. <th>
  81. <h3 id="title"></h3>
  82. </th>
  83. </tr>
  84. <tr>
  85. <td style="text-align: center;">
  86. <div class="Content">
  87. <span>发布人:</span> <span class="FBR"></span><span>发布时间:</span> <span class="RQ"></span>
  88. </div>
  89. </td>
  90. </tr>
  91. <tr>
  92. <td>
  93. <div id="content">
  94. 6195
  95. </div>
  96. </td>
  97. </tr>
  98. </table>
  99. </div>
  100. <script>
  101. var wid = helper.request.queryString("wid");
  102. $(document).ready(function() {
  103. $('#reback').click(function() {
  104. top.$("iframe:visible")[0].src = "Announcement/AnnManagement.html";
  105. //document.frames[top.$("iframe:visible")[0].name].history.back();
  106. })
  107. if(wid) {
  108. $.getJSON(huayi.config.callcenter_url + 'Notice/GetNotice', {
  109. noticeid: wid,
  110. "token": $.cookie("token")
  111. }, function(result) {
  112. if(result.state.toLowerCase() == "success") {
  113. $("#title").text(result.data.F_Title);
  114. $("#content").text(result.data.F_Content);
  115. $('#startTime').val(result.data.F_StartDate);
  116. $('#endTime').val(result.data.F_EndDate);
  117. $(".FBR").text(result.data.F_CreateByName);
  118. $(".RQ").text(result.data.F_CreateOn);
  119. }
  120. });
  121. }
  122. })
  123. </script>
  124. </body>
  125. </html>