This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAdmin/web/views/@default/clusters/cluster/node/settings/system/index.js
T
2024-07-27 15:42:58 +08:00

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;
}
}
})