This commit is contained in:
unknown
2026-02-04 20:27:13 +08:00
commit 3b042d1dad
9410 changed files with 1488147 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
Tea.context(function () {
this.supportHTTPS = false
this.requestHostType = 0
this.requestHost = ""
this.success = function (resp) {
if (resp.data.hasOSS) {
NotifySuccess("保存成功", "/servers/server/settings/reverseProxy?serverId=" + resp.data.serverId)()
} else {
NotifySuccess("保存成功", "/servers")()
}
}
this.fail = function (resp) {
let that = this
teaweb.warn(resp.message, function () {
if (resp.data.requireServerNames) {
that.$refs.serverNameBox.addServerName()
}
})
}
/**
* 证书相关
*/
this.findServerNames = function () {
return this.$refs.serverNameBox.allServerNames()
}
})