2023-01-29 10:26:52 +08:00

56 lines
1.7 KiB
HTML

{extend name="public/base" /}
{block name="body"}
<style>
.clinhei{width:100%;height:20px;}
</style>
<div class="main-box-body clearfix">
<table class="table">
<thead>
<tr>
<th style="text-align: center;">ID</th>
<th style="text-align: center;">成功人数</th>
<th style="text-align: center;">未互动人数</th>
<th style="text-align: center;">群发时间</th>
<th style="text-align: center;">类型</th>
<th style="text-align: center;">状态</th>
</tr>
</thead>
<tbody>
{volist name="res" id="v"}
<tr style="background: #fff;box-shadow: 2px 2px 2px#A0A4A7;">
<td style="text-align: center;font-weight:bold;">{$v.id}</td>
<td style="color: seagreen;text-align: center;">{$v.fulfil}</td>
<td style="color:red;text-align: center;">{$v.failure}</td>
<td style="text-align: center;">{$v.addtime|date='Y-m-d H:i:s',###}</td>
<td style="text-align: center;">
{if $v.type==1}
小说推文
{else/}
继续阅读
{/if}
</td>
<td style="text-align: center;">
{if $v.status==0}
<font color='red'>推送中</font>
{elseif $v.status==1}
<font style="color: rgb(21, 231, 21);">OK</font>
{else/}
<font color='red'>定时中</font>
{/if}
</td>
</tr>
{/volist}
</tbody>
</table>
{$page}
</div>
{/block}
{block name="script"}
<script>
</script>
{/block}