From 25f2c68738d35446aff4cc692b8945dae298e9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=A5=A5=E8=B6=85?= Date: Wed, 17 Apr 2024 15:10:12 +0800 Subject: [PATCH] =?UTF-8?q?UA=E5=90=8D=E5=8D=95=E5=8A=9F=E8=83=BD=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E2=80=9C=E4=BE=8B=E5=A4=96URL=E2=80=9C=E5=92=8C?= =?UTF-8?q?=E2=80=9C=E9=99=90=E5=88=B6URL=E2=80=9D=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../server/user-agent-config-box.js | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/web/public/js/components/server/user-agent-config-box.js b/web/public/js/components/server/user-agent-config-box.js index 6dd21159..bad3f485 100644 --- a/web/public/js/components/server/user-agent-config-box.js +++ b/web/public/js/components/server/user-agent-config-box.js @@ -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: `
@@ -135,6 +139,25 @@ Vue.component("user-agent-config-box", {
+ + + + + + + 例外URL + + +

如果填写了例外URL,表示这些URL跳过5秒盾不做处理。

+ + + + 限制URL + + +

如果填写了限制URL,表示只对这些URL进行5秒盾处理;如果不填则表示支持所有的URL。

+ +