Files
EdgeAdmin/web/views/@default/servers/server/settings/locations/location/index.js
2020-09-22 11:36:51 +08:00

15 lines
318 B
JavaScript

Tea.context(function () {
this.success = NotifyReloadSuccess("保存成功")
this.$delay(function () {
this.changePatternType(this.type)
})
this.selectedType = null
this.changePatternType = function (type) {
this.selectedType = this.patternTypes.$find(function (k, v) {
return v.type == type;
})
}
})