1
0
Files
helper/application/system/view/storage/logs.html
2020-08-06 14:58:51 +08:00

28 lines
692 B
HTML

{extend name="public/base" /}
{block name="body"}
<div class="layui-form admin-main">
<table class="layui-table">
<thead>
<tr>
<th>用户</th>
<th>日志</th>
<th>数据</th>
<th>操作时间</th>
</tr>
</thead>
<tbody>
{volist name="list" id="vo"}
<tr>
<td>{$vo.uid_text}</td>
<td>{$vo.logs}</td>
<td>{$vo.datas_text}</td>
<td>{$vo.create_time}</td>
</tr>
{/volist}
</tbody>
</table>
{$list->render();}
</div>
{/block}