路由规则可以单独设置UAM(仅企业版可用)

This commit is contained in:
GoEdgeLab
2022-05-04 20:31:58 +08:00
parent 4aa841ee5e
commit 4a5b5d0346
4 changed files with 23 additions and 12 deletions

View File

@@ -1,10 +1,11 @@
// UAM模式配置
Vue.component("uam-config-box", {
props: ["v-uam-config"],
props: ["v-uam-config", "v-is-location", "v-is-group"],
data: function () {
let config = this.vUamConfig
if (config == null) {
config = {
isPrior: false,
isOn: false
}
}
@@ -15,13 +16,16 @@ Vue.component("uam-config-box", {
template: `<div>
<input type="hidden" name="uamJSON" :value="JSON.stringify(config)"/>
<table class="ui table definition selectable">
<tr>
<td class="title">启用5秒盾</td>
<td>
<checkbox v-model="config.isOn"></checkbox>
<p class="comment"><plus-label></plus-label>启用后,访问网站时,自动检查浏览器环境,阻止非正常访问。</p>
</td>
</tr>
<prior-checkbox :v-config="config" v-if="vIsLocation || vIsGroup"></prior-checkbox>
<tbody v-show="((!vIsLocation && !vIsGroup) || config.isPrior)">
<tr>
<td class="title">启用5秒盾</td>
<td>
<checkbox v-model="config.isOn"></checkbox>
<p class="comment"><plus-label></plus-label>启用后,访问网站时,自动检查浏览器环境,阻止非正常访问。</p>
</td>
</tr>
</tbody>
</table>
<div class="margin"></div>
</div>`