Files
thinksaas_lmve/app/message/html/admin/msg_list.html
T
2023-06-22 13:33:25 +08:00

41 lines
847 B
HTML

{php include pubTemplate("header_admin")}
<div class="midder">
{php include template("admin/menu");}
<div class="page">{$pageUrl}</div>
<table class="table table-hover">
<thead class="thead-light">
<tr>
<th>messageid</th><th>userid</th><th>touserid</th><th>content</th><th>addtime</th> <th>操作</th>
</tr>
</thead>
<tbody>
{loop $arrMsg $key $item}
<tr><td>{$item['messageid']}</td><td>{$item['userid']}</td><td>{$item['touserid']}</td><td>{$item['content']}</td>
<td>{php echo date('Y-m-d H:i:s',$item['addtime'])}</td>
<td>
<a onclick="return confirm('确定删除吗?')" href="{SITE_URL}index.php?app=message&ac=admin&mg=msg&ts=delete&page={$page}&messageid={$item['messageid']}">删除</a>
</td></tr>
{/loop}
</tbody>
</table>
</div>
{php include pubTemplate("footer_admin")}