mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-17 22:30:25 +08:00
14 lines
331 B
JavaScript
14 lines
331 B
JavaScript
Tea.context(function () {
|
||
this.success = NotifyReloadSuccess("保存成功")
|
||
|
||
this.regenerateCNAME = function () {
|
||
let serverId = this.serverId
|
||
teaweb.confirm("确定要重新生成此服务的CNAME吗?", function () {
|
||
this.$post(".regenerateCNAME")
|
||
.params({
|
||
serverId: serverId
|
||
})
|
||
.refresh()
|
||
})
|
||
}
|
||
}) |