mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-26 04:06:34 +08:00
14 lines
438 B
HTML
14 lines
438 B
HTML
{$layout}
|
|
|
|
<p class="comment" v-if="logs.length == 0">暂时还没有日志。</p>
|
|
|
|
<table class="ui table selectable" v-for="log in logs">
|
|
<tr>
|
|
<td>{{log.createdTime}} <span class="grey"> <span v-if="log.userName.length > 0">| {{log.userName}}</span> | {{log.ip}}<span v-if="log.region.length > 0"> | {{log.region}}</span></span></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{log.description}}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="page" v-html="page"></div> |