Initial commit (code only without large binaries)

This commit is contained in:
robin
2026-02-15 18:58:44 +08:00
commit 35df75498f
9442 changed files with 1495866 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
{$layout}
{$template "../menu"}
<not-found-box v-if="providers.length == 0">暂时还没有ISP运营商。</not-found-box>
<table class="ui table selectable celled" v-if="providers.length > 0">
<thead>
<tr>
<th style="width: 3em">ID</th>
<th style="width: 12em">ISP运营商名称</th>
<th style="width: 12em">内置别名</th>
<th style="width: 12em">自定义名称 <tip-icon content="修改在界面上显示的ISP运营商名称"></tip-icon></th>
<th style="width: 12em">自定义别名 <tip-icon content="可以在IP库中通过别名找到当前ISP运营商比如通过联通、中国联通都可以找到联通这个ISP服务商"></tip-icon></th>
<th class="one op">操作</th>
</tr>
</thead>
<tr v-for="provider in providers">
<td>{{provider.id}}</td>
<td>{{provider.name}}</td>
<td>
<div v-if="provider.codes.length > 0">
<span v-for="code in provider.codes" class="ui label basic">{{code}}</span>
</div>
<span v-else class="disabled"></span>
</td>
<td>
<span v-if="provider.customName.length > 0">{{provider.customName}}</span>
<span v-else class="disabled">暂无</span>
</td>
<td>
<div v-if="provider.customCodes.length > 0">
<span v-for="code in provider.customCodes" class="ui label basic">{{code}}</span>
</div>
<span v-else class="disabled">暂无</span>
</td>
<td>
<a href="" @click.prevent="updateProvider(provider.id)">修改</a>
</td>
</tr>
</table>