Files
waf-platform/EdgeUser/web/views/@default/servers/fee/index.js
2026-02-04 20:27:13 +08:00

21 lines
469 B
JavaScript

Tea.context(function () {
this.updatePriceType = function () {
teaweb.popup("/servers/fee/updatePriceTypePopup", {
callback: function () {
teaweb.success("保存成功", function () {
window.location.reload()
})
}
})
}
this.updatePricePeriod = function () {
teaweb.popup("/servers/fee/updatePricePeriodPopup", {
callback: function () {
teaweb.success("保存成功", function () {
window.location.reload()
})
}
})
}
})