| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <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">
- <@jp.contents module="uuhelper" orderBy="meta:push_time desc">
- <#list contents as content>
- <tr>
- <td class="messageTitle">${content.title!}</td>
- <td class="messageTime">
- ${(content.getMetadataByKey("push_time"))!}
- </td>
- <td class="isOpenMessage">
- <select id="commentStatus${content.id!}" onchange="changeCommentSataus(${content.id!})">
- <#if (content.comment_status)?? && "close" == content.comment_status >
- <option value="close" selected="selected">关闭</option>
- <#else>
- <option value="close">关闭</option>
- </#if>
- <#if (content.comment_status)?? && "open" == content.comment_status >
- <option value="open" selected="selected">开启</option>
- <#else>
- <option value="open">开启</option>
- </#if>
- </select>
- </td>
- <td class="handleMessage">
- <a class="replay" href="${CPATH}/admin/comment?t=comment&m=uuhelper&p=uuhelper&c=comment&way=detail">查看</a>
- </td>
- </tr>
- </#list>
- </@jp.contents>
- </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>
|