mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-11 01:50:27 +08:00
30 lines
654 B
JavaScript
30 lines
654 B
JavaScript
Tea.context(function () {
|
|
// 添加节点
|
|
this.createNode = function () {
|
|
teaweb.popup("/db/createPopup", {
|
|
height: "30em",
|
|
callback: function () {
|
|
teaweb.success("保存成功", function () {
|
|
window.location.reload()
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
// 删除节点
|
|
this.deleteNode = function (nodeId) {
|
|
let that = this
|
|
teaweb.confirm("确定要删除此数据库节点吗?", function () {
|
|
that.$post(".delete")
|
|
.params({
|
|
nodeId: nodeId
|
|
})
|
|
.refresh()
|
|
})
|
|
}
|
|
|
|
// 显示错误信息
|
|
this.showError = function (err) {
|
|
teaweb.popupTip("<span style=\"color:#db2828\">错误信息:" + err + "</span>")
|
|
}
|
|
}) |