| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>公告管理</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link href="../css/WorkOrder/Search.css" rel="stylesheet">
- <link href="../css/init.css" rel="stylesheet" />
- <style>
- table td {
- word-break: break-all;
- word-wrap: break-word;
- }
- .ld-service li {
- float: left;
- font-size: 14px;
- color: #000;
- padding: 5px 15px;
- cursor: pointer;
- border-bottom: 1px solid #ccc;
- }
- .cr-click {
- border: 1px solid #ccc;
- background-color: #fff;
- border-bottom: none !important;
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
- }
- .Shows {
- display: block !important;
- }
- .complain {
- display: none;
- }
- th {
- padding: 5px;
- text-align: center;
- }
- td {
- padding: 5px;
- }
- .Borders {
- border: 1px solid #d7d7d7;
- }
- .cx {
- display: block;
- }
- span {
- margin-right: 10px;
- }
- .Content {
- padding: 10px;
- margin: 0 auto;
- width: 30%;
- }
- #content {
- width: 80%;
- margin: 0 auto;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="wrapper wrapper-content animated fadeInRight">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn>
- <i class="syIcon"></i>位置:
- <a href="javaScript:;" id="ReIndex">首页</a>>
- <a href="javaScript:;">信息管理</a>>
- <a class="nowPosition" href="AnnManagement.html">公告管理</a>
- </sapn>
- </div>
- <div class="dhRight">
- <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
- </div>
- </div>
- <table border="0" cellspacing="" cellpadding="" style="width: 100%;">
- <tr>
- <th>
- <h3 id="title"></h3>
- </th>
- </tr>
- <tr>
- <td style="text-align: center;">
- <div class="Content">
- <span>发布人:</span> <span class="FBR"></span><span>发布时间:</span> <span class="RQ"></span>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <div id="content">
- </div>
- </td>
- </tr>
- </table>
- </div>
- <script>
- var wid = helper.request.queryString("wid");
- $(document).ready(function () {
- if (wid) {
- $.getJSON(huayi.config.callcenter_url + 'Notice/GetNotice', {
- noticeid: wid,
- "token": $.cookie("token")
- }, function (result) {
- if (result.state.toLowerCase() == "success") {
- $("#title").text(result.data.F_Title);
- $("#content").html(result.data.F_Content);
- $('#startTime').val(result.data.F_StartDate);
- $('#endTime').val(result.data.F_EndDate);
- $(".FBR").text(result.data.F_CreateByName);
- $(".RQ").text(result.data.F_CreateOn);
- console.log(result.data);
- }
- });
- }
- })
- </script>
- </body>
- </html>
|