Files
EdgeAdmin/web/views/@default/api/index.js
2020-10-10 20:28:36 +08:00

13 lines
257 B
JavaScript

Tea.context(function () {
this.createNode = function () {
teaweb.popup("/api/node/createPopup", {
width: "50em",
height: "30em",
callback: function () {
teaweb.success("保存成功", function () {
teaweb.reload()
})
}
})
}
})