Files
EdgeAdmin/web/views/@default/clusters/create.js

13 lines
343 B
JavaScript
Raw Normal View History

2020-09-06 16:19:34 +08:00
Tea.context(function () {
this.success = function (resp) {
teaweb.success("集群创建成功", function () {
window.location = "/clusters/cluster/nodes?clusterId=" + resp.data.clusterId
2021-08-25 11:55:06 +08:00
})
}
this.domain = {id: 0, name: ""}
this.changeDomain = function (domain) {
this.domain.id = domain.id
this.domain.name = domain.name
}
2020-09-06 16:19:34 +08:00
})