mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-25 19:56:35 +08:00
25 lines
644 B
HTML
25 lines
644 B
HTML
{$layout}
|
|
|
|
{$template "/left_menu"}
|
|
|
|
<div class="right-box">
|
|
{$template "menu"}
|
|
|
|
<p class="comment" v-if="locations.length == 0">暂时还没有路径规则。</p>
|
|
|
|
<table class="ui table selectable" v-if="locations.length > 0">
|
|
<thead>
|
|
<tr>
|
|
<th>匹配规则</th>
|
|
<th class="two op">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tr v-for="location in locations">
|
|
<td>{{location.pattern}}</td>
|
|
<td>
|
|
<a :href="'/servers/server/settings/locations/location?serverId=' + serverId + '&locationId=' + location.id">详情</a>
|
|
<a href="" @click.prevent="deleteLocation(location.id)">删除</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div> |