Commit bd302620 by 李洋

更改图标

所有历史消息添加创建时间
parent aaef4923
No preview for this file type
No preview for this file type
......@@ -84,6 +84,7 @@
<th class="text-center">消息内容</th>
<th class="text-center">消息渠道</th>
<th class="text-center">推送目标</th>
<th class="text-center">创建时间</th>
<th class="text-center">推送时间</th>
<th class="text-center">推送状态</th>
</tr>
......@@ -120,6 +121,17 @@
<td>{{ $obj->channel_type }}</td>
<td>{{ $obj->obj_user }}</td>
<?php
if(empty($obj->create_time))
{
$obj->create_time = '';
}else
{
$obj->create_time=date("Y-m-d H:i:s",$obj->create_time);
}
?>
<td>{{ $obj->create_time }}</td>
<?php
if(empty($obj->actual_send_time))
{
$obj->actual_send_time = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment