UA名单功能增加“例外URL“和“限制URL”设置

This commit is contained in:
GoEdgeLab
2024-04-17 15:10:12 +08:00
parent 40ae4b71e8
commit 5aecb46934

View File

@@ -18,7 +18,8 @@ Vue.component("user-agent-config-box", {
addingFilter: {
keywords: [],
action: "deny"
}
},
moreOptionsVisible: false
}
},
methods: {
@@ -63,6 +64,9 @@ Vue.component("user-agent-config-box", {
},
changeKeywords: function (keywords) {
this.addingFilter.keywords = keywords
},
showMoreOptions: function () {
this.moreOptionsVisible = !this.moreOptionsVisible
}
},
template: `<div>
@@ -135,6 +139,25 @@ Vue.component("user-agent-config-box", {
</div>
</td>
</tr>
<tr>
<td colspan="2"><more-options-indicator @change="showMoreOptions"></more-options-indicator></td>
</tr>
</tbody>
<tbody v-show="moreOptionsVisible && isOn()">
<tr>
<td>例外URL</td>
<td>
<url-patterns-box v-model="config.exceptURLPatterns"></url-patterns-box>
<p class="comment">如果填写了例外URL表示这些URL跳过5秒盾不做处理。</p>
</td>
</tr>
<tr>
<td>限制URL</td>
<td>
<url-patterns-box v-model="config.onlyURLPatterns"></url-patterns-box>
<p class="comment">如果填写了限制URL表示只对这些URL进行5秒盾处理如果不填则表示支持所有的URL。</p>
</td>
</tr>
</tbody>
</table>
<div class="margin"></div>