mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 12:20:28 +08:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
Tea.context(function () {
|
|
this.success = NotifyReloadSuccess("保存成功")
|
|
|
|
this.changeBypassMobile = function(bypassMobile) {
|
|
if (bypassMobile.target.checked) {
|
|
this.node.bypassMobile = 17;
|
|
} else {
|
|
this.node.bypassMobile = 0;
|
|
}
|
|
}
|
|
}) |