WAF规则增加备注信息/其他界面优化

This commit is contained in:
刘祥超
2022-01-10 10:28:23 +08:00
parent 7f6f7e11ce
commit 66f582df58
10 changed files with 19 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ Vue.component("http-firewall-rule-label", {
},
template: `<div>
<div class="ui label tiny basic">
<div class="ui label tiny basic" style="line-height: 1.5">
{{rule.name}}[{{rule.param}}]
<!-- cc2 -->
@@ -33,6 +33,9 @@ Vue.component("http-firewall-rule-label", {
{{rule.value}}
</span>
<!-- description -->
<span v-if="rule.description != null && rule.description.length > 0" class="grey small">{{rule.description}}</span>
<a href="" v-if="rule.err != null && rule.err.length > 0" @click.prevent="showErr(rule.err)" style="color: #db2828; opacity: 1; border-bottom: 1px #db2828 dashed; margin-left: 0.5em">规则错误</a>
</div>
</div>`