| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <style>
- /*table表格*/
- .box-content .box-message{
- border-top: none;
- margin-top: 40px;
- }
- .box-content .box-message table thead tr{
- background: #f1f1f1;
- }
- .bodyUas .messageTitle{
- font-size: 18px;
- color: #000;
- padding-left: 30px;
- }
- .bodyUas .messageTime{
- font-size: 16px;
- color: #333;
- }
- .bodyUas .isOpenMessage{
- font-size: 16px;
- color: #333;
- }
- .bodyUas .handleMessage a.replay{
- margin-right: 20px;
- font-size: 16px;
- color: #0a44ff;
- }
- .box-content .box-message .table tbody.bodyUas tr {
- background-color: #fff;
- }
- .box-content .box-message .table tbody.bodyUas tr td{
- vertical-align: middle;
- height: 70px;
- }
- .content-wrapper{
- background-color: #fff!important;
- }
- </style>
- <!-- Main content -->
- <section class="content box-content">
- <div class="box box-message">
- <!-- /.box-header -->
- <div class="box-body">
- <form action="" method="POST" id="form">
- <input type="hidden" name="ucode" value="${ucode}">
- <table class="table table-striped" style="word-break:break-all">
- <thead>
- <tr>
- <th width="330" style="padding-left: 40px;">文章标题</th>
- <th width="260">时间</th>
- <th width="230">是否开启</th>
- <th width="200">操作</th>
- </tr>
- </thead>
- <tbody class="bodyUas">
- <tr>
- <td class="messageTitle">UU助手上线啦</td>
- <td class="messageTime">
- 2017-08-26 17:24:23
- </td>
- <td class="isOpenMessage">
- 开启
- </td>
- <td class="handleMessage">
- <a class="replay">查看</a>
- </td>
- </tr>
- <tr>
- <td class="messageTitle">UU助手上线啦</td>
- <td class="messageTime">
- 2017-08-26 17:24:23
- </td>
- <td class="isOpenMessage">
- 开启
- </td>
- <td class="handleMessage">
- <a class="replay">查看</a>
- </td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- <!-- /.box-body -->
- </div>
- <div class="cf">
- <div class="pull-right " >
- <#if page??>
- <#include "../_inc/_paginate.html" />
- <@paginate currentPage=page.pageNumber totalPage=page.totalPage actionUrl="?p="+(p!)+"&c="+(c!)+"&m="+(m!)+"&t="+(t!)+"&s="+(s!)+"&k="+(k!)+"&tids="+(tids!)+"&page="/>
- </#if>
- </div>
- </div>
- <!-- /.row -->
- </section>
|