diff --git a/web/public/js/components/common/health-check-config-box.js b/web/public/js/components/common/health-check-config-box.js index 081a75cb..d55db78d 100644 --- a/web/public/js/components/common/health-check-config-box.js +++ b/web/public/js/components/common/health-check-config-box.js @@ -1,5 +1,5 @@ Vue.component("health-check-config-box", { - props: ["v-health-check-config", "v-check-domain-url"], + props: ["v-health-check-config", "v-check-domain-url", "v-is-plus"], data: function () { let healthCheckConfig = this.vHealthCheckConfig let urlProtocol = "http" @@ -69,6 +69,7 @@ Vue.component("health-check-config-box", { healthCheckConfig.countDown = 3 } } + return { healthCheck: healthCheckConfig, advancedVisible: false, @@ -237,13 +238,13 @@ Vue.component("health-check-config-box", { - 自动下线 + 自动下线IP
-

选中后系统会根据健康检查的结果自动标记节点的上线/下线状态,并可能自动同步DNS设置。

+

选中后系统会根据健康检查的结果自动标记节点IP节点的上线/下线状态,并可能自动同步DNS设置。注意:免费版的只能整体上下线整个节点,商业版的可以下线单个IP。

diff --git a/web/views/@default/clusters/cluster/settings/health/index.html b/web/views/@default/clusters/cluster/settings/health/index.html index a64c3508..3b0f3998 100644 --- a/web/views/@default/clusters/cluster/settings/health/index.html +++ b/web/views/@default/clusters/cluster/settings/health/index.html @@ -5,7 +5,7 @@
- +   立即检查
\ No newline at end of file diff --git a/web/views/@default/clusters/cluster/settings/health/index.js b/web/views/@default/clusters/cluster/settings/health/index.js index 17b474bc..2bff5344 100644 --- a/web/views/@default/clusters/cluster/settings/health/index.js +++ b/web/views/@default/clusters/cluster/settings/health/index.js @@ -4,7 +4,7 @@ Tea.context(function () { this.run = function () { teaweb.confirm("确定要对当前集群下的所有节点进行健康检查吗?", function () { teaweb.popup("/clusters/cluster/settings/health/runPopup?clusterId=" + this.clusterId, { - height: "25em" + height: "30em" }) }) }