实现公用的IP名单

This commit is contained in:
GoEdgeLab
2021-06-23 13:12:33 +08:00
parent c4f7eadeda
commit ee2420e8ad
88 changed files with 2060 additions and 69 deletions

View File

@@ -0,0 +1,24 @@
{$layout}
{$template "list_menu"}
<table class="ui table definition selectable">
<tr>
<td class="title">名称</td>
<td>
{{list.name}}
</td>
</tr>
<tr>
<td>类型</td>
<td>
{{list.typeName}}
</td>
</tr>
<tr>
<td>备注</td>
<td>
<span v-if="list.description.length > 0">{{list.description}}</span>
<span v-else class="disabled">-</span>
</td>
</tr>
</table>