begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+85
View File
@@ -0,0 +1,85 @@
{php include pubTemplate("header")}
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="my_left">
{php include pubTemplate("my")}
</div>
</div>
<div class="col-md-9">
<div class="card">
<div class="card-body">
{template menu}
<div class="system fs13">
<table class="table">
<thead class="thead-light">
<tr>
<th>消息</th>
<th>状态</th>
<th class="text-right">操作</th>
</tr>
</thead>
<tbody>
{loop $arrMessage $key $item}
<tr>
<td>
<p class="c9">{php echo date('Y-m-d H:i:s',$item[addtime])}</p>
{if $item['userid']}{$item['user']['username']}{/if} {$item[content]}
</td>
<td>
{if $item['isread']==1}
已读
{else}
未读
{/if}
</td>
<td class="text-right">
{if $item['tourl']}
<a class="btn btn-sm btn-outline-secondary" target="_blank" href="{$item['tourl']}">查看</a>
{/if}
{if $item['userid'] && $item['tourl']==''}
<a class="btn btn-sm btn-outline-secondary" href="{tsUrl('message','user',array('touserid'=>$item['userid']))}">聊天</a>
{/if}
</td>
</tr>
{/loop}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{php include pubTemplate("footer")}