Files
EdgeAdmin/web/views/@default/dns/providers/createPopup.js
2021-06-02 18:14:00 +08:00

17 lines
337 B
JavaScript

Tea.context(function () {
this.success = NotifyPopup
this.type = ""
this.typeDescription = ""
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 = ""
}
}
})