Files
EdgeAdmin/web/views/@default/servers/iplists/accessLogsPopup.html
2021-07-18 17:09:31 +08:00

10 lines
496 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{$layout "layout_popup"}
<h3>访问日志<span v-if="ipTo.length > 0" class="grey">{{ipFrom}} - {{ipTo}}</span><span v-else class="grey">{{ipFrom}}</span></h3>
<p class="comment" v-if="accessLogs.length == 0">暂时还没有访问日志。</p>
<table class="ui table selectable" v-if="accessLogs.length > 0">
<tr v-for="accessLog in accessLogs" :key="accessLog.requestId">
<td><http-access-log-box :v-access-log="accessLog"></http-access-log-box></td>
</tr>
</table>