mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-26 20:26:35 +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;
|
|
}
|
|
}
|
|
}) |