mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
Tea.context(function () {
|
|
this.success = NotifyPopup
|
|
this.isCA = this.certConfig.isCA ? 1 : 0
|
|
this.textMode = false
|
|
|
|
this.switchTextMode = function () {
|
|
this.textMode = !this.textMode
|
|
if (this.textMode) {
|
|
this.$delay(function () {
|
|
this.$refs.certTextField.focus()
|
|
})
|
|
}
|
|
}
|
|
}) |