mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-26 20:26:35 +08:00
15 lines
318 B
JavaScript
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;
|
|
})
|
|
}
|
|
}) |