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

49 lines
1.6 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>
<th style="text-align: center;">errmsg</th>
</tr>
</thead>
<tbody>
{volist name="data" id="v"}
<tr style="background: #fff;box-shadow: 2px 2px 2px#A0A4A7;">
<td style="text-align: center;font-weight:bold;">{$v.mid}</td>
<td style="color: seagreen;text-align: center;">{$v.wxname}</td>
<td style="color:#002945;text-align: center;">{$v.type}</td>
<td style="color:red;text-align: center;">{$v.num}</td>
{if $v.status==1}
<td style="color: seagreen;text-align: center;">群发成功</td>
{else/}
<td style="color: red;text-align: center;">失败</td>
{/if}
<td style="text-align: center;">{$v.addtime|date='Y-m-d H:i:s',###}</td>
<td style="color: red;text-align: center;">{$v.errmsg}</td>
</tr>
{/volist}
</tbody>
</table>
</div>
{/block}
{block name="script"}
<script>
</script>
{/block}