mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
20 lines
562 B
HTML
20 lines
562 B
HTML
{$layout}
|
|
|
|
{$template "menu"}
|
|
|
|
<p class="comment" v-if="logs.length == 0">暂时还没有日志。</p>
|
|
|
|
<table class="ui table selectable" v-if="logs.length > 0">
|
|
<thead>
|
|
<tr>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tr v-for="log in logs">
|
|
<td>
|
|
<pre class="log-box"><span :class="{red:log.level == 'error', yellow:log.level == 'warning'}"><span v-if="!log.isToday">[{{log.createdTime}}]</span><strong v-if="log.isToday">[{{log.createdTime}}]</strong>[{{log.tag}}]{{log.description}}</span></pre>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="page" v-html="page"></div> |