修复缓存策略页面空白的问题/stop命令改成QUIT信号

This commit is contained in:
刘祥超
2020-10-14 18:44:11 +08:00
parent 5e1670524e
commit 85df69f3de
5 changed files with 43 additions and 11 deletions

View File

@@ -8,8 +8,8 @@
<a href="" class="item" @click.prevent="createPolicy()">[创建]</a>
</second-menu>
<p class="comment" v-if="cachePolicies.length == 0">暂时还没有缓存策略。</p>
<table class="ui table selectable" v-if="cachePolicies.length > 0">
<p class="comment" v-if="cachePolicies == null || cachePolicies.length == 0">暂时还没有缓存策略。</p>
<table class="ui table selectable" v-if="cachePolicies != null && cachePolicies.length > 0">
<thead>
<tr>
<th>策略名称</th>