前端页面

This commit is contained in:
robin
2026-02-24 11:33:44 +08:00
parent f3af234308
commit 60dc87e0f2
141 changed files with 6845 additions and 133 deletions

View File

@@ -0,0 +1,17 @@
Tea.context(function () {
this.hasErrorLogs = false; // Mock data
if (typeof this.clusters == "undefined") {
this.clusters = [];
}
this.deleteCluster = function (clusterId) {
let that = this;
teaweb.confirm("确定要删除这个集群吗?", function () {
that.$post(".delete")
.params({
clusterId: clusterId
})
.refresh();
});
};
});