Files
EdgeAdmin/web/views/@default/dns/providers/createPopup.js

20 lines
421 B
JavaScript
Raw Normal View History

2020-11-11 21:32:19 +08:00
Tea.context(function () {
this.success = NotifyPopup
2024-07-27 15:42:58 +08:00
this.type = "dnsla"
this.typeDescription = "DNS.LA提供的DNS服务。"
2021-06-02 18:14:00 +08:00
this.changeType = function () {
let that = this
let t = this.types.$find(function (k, v) {
return v.code == that.type
})
if (t != null) {
this.typeDescription = t.description
} else {
this.typeDescription = ""
}
}
// DNSPod
this.paramDNSPodAPIType = "tencentDNS"
2020-11-11 21:32:19 +08:00
})