Ei kuvausta

AnnD.html 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. #title {
  64. font-weight: 600;
  65. }
  66. </style>
  67. </head>
  68. <body class="gray-bg">
  69. <div class="wrapper wrapper-content animated fadeInRight">
  70. <div class="daoHang clearfix">
  71. <div class="dhLeft">
  72. <sapn>
  73. <i class="syIcon"></i>位置:
  74. <a href="javaScript:;" id="ReIndex">首页</a>&gt;
  75. <a href="javaScript:;">信息管理</a>&gt;
  76. <a class="nowPosition" href="AnnManagement.html">公告管理</a>
  77. </sapn>
  78. </div>
  79. <div class="dhRight">
  80. <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
  81. </div>
  82. </div>
  83. <table border="0" cellspacing="" cellpadding="" style="width: 100%;">
  84. <tr>
  85. <th>
  86. <h1 id="title"></h1>
  87. </th>
  88. </tr>
  89. <tr>
  90. <td style="text-align: center;">
  91. <div class="Content">
  92. <span>发布人:</span> <span class="FBR"></span><span>发布时间:</span> <span class="RQ"></span>
  93. </div>
  94. </td>
  95. </tr>
  96. <tr>
  97. <td>
  98. <div id="content">
  99. </div>
  100. </td>
  101. </tr>
  102. </table>
  103. </div>
  104. <script>
  105. var wid = helper.request.queryString("wid");
  106. $(document).ready(function () {
  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").html(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. console.log(result.data);
  120. }
  121. });
  122. }
  123. })
  124. </script>
  125. </body>
  126. </html>