diff --git a/web/public/js/components.js b/web/public/js/components.js index 6a0ec3f8..2b17efce 100755 --- a/web/public/js/components.js +++ b/web/public/js/components.js @@ -6165,6 +6165,35 @@ Vue.component("user-selector", { ` }) +// UAM模式配置 +Vue.component("uam-config-box", { + props: ["v-uam-config"], + data: function () { + let config = this.vUamConfig + if (config == null) { + config = { + isOn: false + } + } + return { + config: config + } + }, + template: `
| 启用全站防护 | +
+ 启用后,访问网站时,自动检查浏览器环境,阻止非正常访问。 + |
+