| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <title>微博详情</title>
- <style>
- .treeTable {
- height: 400px;
- /*overflow-y: auto;*/
- }
- .content {
- width: 270px;
- height: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: left;
- cursor: pointer;
- }
- #table1 thead tr th{
- background: #01a1cb;
- color: #fff;
- text-align: center;
- }
- #table1 tbody tr td{
- text-align: center;
- }
- </style>
- </head>
- <body>
- <div class="container-fluid">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>><a href="javaScript:;">后台管理</a>><a href="" class="nowPosition">微博信息详情</a></sapn>
- </div>
- <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
- </div>
- <div class="treeTable clearfix">
- <div class="tableCon">
- <table id="table1" class="table table-hover table-striped table-bordered table-condensed">
- <thead>
- <tr>
- <th>微博ID</th>
- <th>微博信息</th>
- <th>关联</th>
- <th>发布人</th>
- <th>发布时间</th>
- <!--<th>操作</th>-->
- </tr>
- </thead>
- <tbody id="tbody"></tbody>
- </table>
- </div>
- </div>
- </div>
- <script src="../css/layer/layer.js"></script>
- <script>
- var id = helper.request.queryString("id");
- $('#table1 tbody').html('');
- $.ajax({
- type:"get",
- url:huayi.config.callcenter_url + "WeiBo/WeiBoInfoByIn",
- async:true,
- dataType:'json',
- data:{
- token:$.cookie("token"),
- id:id
- },
- success:function(data){
- var con=data.data;
- if(data.state.toLowerCase()=='success'){
- $('<tr>'+
- '<td>'+ con.W_Id +'</td>'+
- '<td>'+ con.W_Text +'</td>'+
- '<td>'+ con.W_Source +'</td>'+
- '<td>'+ con.W_Name +'</td>'+
- '<td>'+ con.W_Created_at +'</td>'+
- // '<td>'+ con.W_Url +'</td>'+
- '</tr>').appendTo('#table1 tbody');
- }
- }
- });
-
-
-
-
- </script>
- </body>
- </html>
|