Files
EdgeAdmin/web/views/@default/clusters/cluster/node/settings/system/index.js

11 lines
251 B
JavaScript
Raw Normal View History

2021-09-13 16:47:34 +08:00
Tea.context(function () {
this.success = NotifyReloadSuccess("保存成功")
2024-07-27 15:42:58 +08:00
this.changeBypassMobile = function(bypassMobile) {
if (bypassMobile.target.checked) {
this.node.bypassMobile = 17;
} else {
this.node.bypassMobile = 0;
}
}
2021-09-13 16:47:34 +08:00
})