改进WAF策略的区域封禁

This commit is contained in:
刘祥超
2023-07-07 15:28:29 +08:00
parent 981d1c626b
commit a5e97fc425
14 changed files with 383 additions and 356 deletions

View File

@@ -1,30 +1,4 @@
Tea.context(function () {
this.isCheckingAll = false
this.countSelectedProvinces = this.provinces.$count(function (k, province) {
return province.isChecked
})
this.selectProvince = function (province) {
province.isChecked = !province.isChecked
this.change()
}
this.deselectProvince = function (province) {
province.isChecked = false
this.change()
}
this.checkAll = function () {
this.isCheckingAll = !this.isCheckingAll
let that = this
this.provinces.forEach(function (province) {
province.isChecked = that.isCheckingAll
})
this.change()
}
this.success = function () {
teaweb.success("保存成功", function () {
teaweb.reload()
@@ -32,9 +6,7 @@ Tea.context(function () {
}
this.change = function () {
this.countSelectedProvinces = this.provinces.$count(function (k, province) {
return province.isChecked
})
this.changeAllowedProvinces = function (event) {
this.allowedProvinces = event.provinces
}
})