优化界面

This commit is contained in:
GoEdgeLab
2021-06-07 16:23:37 +08:00
parent b13f9c5dfe
commit b3d3f251b3
3 changed files with 68 additions and 6 deletions

View File

@@ -0,0 +1,44 @@
Tea.context(function () {
this.addr = ""
this.protocol = ""
this.addrError = ""
if (this.serverType == "httpProxy") {
this.protocol = "http"
}
this.changeProtocol = function () {
this.checkPort()
}
this.changeAddr = function () {
if (this.serverType == "httpProxy") {
if (this.addr.startsWith("http://")) {
this.protocol = "http"
} else if (this.addr.startsWith("https://")) {
this.protocol = "https"
}
}
this.checkPort()
}
this.checkPort = function () {
this.addrError = ""
// HTTP
if (this.protocol == "http") {
if (this.addr.endsWith(":443")) {
this.addrError = "443通常是HTTPS协议端口请确认源站协议选择是否正确。"
}
}
// HTTPS
if (this.protocol == "https") {
if (this.addr.endsWith(":80")) {
this.addrError = "80通常是HTTP协议端口请确认源站协议选择是否正确。"
}
}
}
})