可以清理数据库节点的数据表

This commit is contained in:
GoEdgeLab
2021-01-19 22:05:46 +08:00
parent 600caad2f8
commit 62d42e8e30
22 changed files with 236 additions and 18 deletions

View File

@@ -34,4 +34,14 @@ Tea.context(function () {
.refresh()
})
}
// 清理节点
this.cleanNode = function (nodeId) {
teaweb.popup("/db/cleanPopup?nodeId=" + nodeId)
}
// 显示错误信息
this.showError = function (err) {
teaweb.popupTip("<span style=\"color:#db2828\">错误信息:" + err + "</span>")
}
})