mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-06 14:50:25 +08:00
32 lines
881 B
JavaScript
32 lines
881 B
JavaScript
// UAM模式配置
|
|
Vue.component("uam-config-box", {
|
|
props: ["v-uam-config", "v-is-location", "v-is-group"],
|
|
data: function () {
|
|
let config = this.vUamConfig
|
|
if (config == null) {
|
|
config = {
|
|
isPrior: false,
|
|
isOn: false
|
|
}
|
|
}
|
|
return {
|
|
config: config
|
|
}
|
|
},
|
|
template: `<div>
|
|
<input type="hidden" name="uamJSON" :value="JSON.stringify(config)"/>
|
|
<table class="ui table definition selectable">
|
|
<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>`
|
|
}) |