Files
waf-platform/EdgeAdmin/web/views/@default/settings/client-systems/index.js
2026-02-04 20:27:13 +08:00

19 lines
397 B
JavaScript

Tea.context(function () {
this.createSystem = function () {
teaweb.popup(".createPopup", {
height: "24em",
callback: function () {
teaweb.successRefresh("保存成功")
}
})
}
this.updateSystem = function (dataId) {
teaweb.popup(".system.updatePopup?dataId=" + dataId, {
height: "24em",
callback: function () {
teaweb.successRefresh("保存成功")
}
})
}
})