Files
EdgeAdmin/web/views/@default/api/index.js

13 lines
257 B
JavaScript
Raw Normal View History

2020-10-10 20:28:36 +08:00
Tea.context(function () {
this.createNode = function () {
teaweb.popup("/api/node/createPopup", {
width: "50em",
height: "30em",
callback: function () {
teaweb.success("保存成功", function () {
teaweb.reload()
})
}
})
}
})