Nav apraksta

AnnD.html 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 class="nowPosition" href="AnnManagement.html">公告管理</a>
  74. </sapn>
  75. </div>
  76. <div class="dhRight">
  77. <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
  78. </div>
  79. </div>
  80. <table border="0" cellspacing="" cellpadding="" style="width: 100%;">
  81. <tr>
  82. <th>
  83. <h3 id="title"></h3>
  84. </th>
  85. </tr>
  86. <tr>
  87. <td style="text-align: center;">
  88. <div class="Content">
  89. <span>发布人:</span> <span class="FBR"></span><span>发布时间:</span> <span class="RQ"></span>
  90. </div>
  91. </td>
  92. </tr>
  93. <tr>
  94. <td>
  95. <div id="content">
  96. </div>
  97. </td>
  98. </tr>
  99. </table>
  100. </div>
  101. <script>
  102. var wid = helper.request.queryString("wid");
  103. $(document).ready(function () {
  104. if (wid) {
  105. $.getJSON(huayi.config.callcenter_url + 'Notice/GetNotice', {
  106. noticeid: wid,
  107. "token": $.cookie("token")
  108. }, function (result) {
  109. if (result.state.toLowerCase() == "success") {
  110. $("#title").text(result.data.F_Title);
  111. $("#content").html(result.data.F_Content);
  112. $('#startTime').val(result.data.F_StartDate);
  113. $('#endTime').val(result.data.F_EndDate);
  114. $(".FBR").text(result.data.F_CreateByName);
  115. $(".RQ").text(result.data.F_CreateOn);
  116. console.log(result.data);
  117. }
  118. });
  119. }
  120. })
  121. </script>
  122. </body>
  123. </html>