diff --git a/web/public/js/components/server/http-referers-config-box.js b/web/public/js/components/server/http-referers-config-box.js index e75ac13f..724c15f0 100644 --- a/web/public/js/components/server/http-referers-config-box.js +++ b/web/public/js/components/server/http-referers-config-box.js @@ -20,7 +20,8 @@ Vue.component("http-referers-config-box", { config.denyDomains = [] } return { - config: config + config: config, + moreOptionsVisible: false } }, methods: { @@ -38,6 +39,9 @@ Vue.component("http-referers-config-box", { this.config.denyDomains = domains this.$forceUpdate() } + }, + showMoreOptions: function () { + this.moreOptionsVisible = !this.moreOptionsVisible } }, template: `
禁止的来源域名列表,比如
如果请求没有指定Referer Header,则尝试检查Origin Header,多用于跨站调用。
如果填写了例外URL,表示这些URL跳过不做处理。
+如果填写了限制URL,表示只对这些URL进行处理;如果不填则表示支持所有的URL。
+如果填写了例外URL,表示这些URL跳过5秒盾不做处理。
+如果填写了例外URL,表示这些URL跳过不做处理。
如果填写了限制URL,表示只对这些URL进行5秒盾处理;如果不填则表示支持所有的URL。
+如果填写了限制URL,表示只对这些URL进行处理;如果不填则表示支持所有的URL。