mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-15 13:00:25 +08:00
20 lines
367 B
JavaScript
20 lines
367 B
JavaScript
Tea.context(function () {
|
|
this.secretType = "clear"
|
|
this.secret = ""
|
|
|
|
this.$delay(function () {
|
|
this.$watch("secretType", function () {
|
|
this.secret = ""
|
|
})
|
|
})
|
|
|
|
this.generateSecret = function () {
|
|
this.$post(".generateSecret")
|
|
.params({
|
|
secretType: this.secretType
|
|
})
|
|
.success(function (resp) {
|
|
this.secret = resp.data.secret
|
|
})
|
|
}
|
|
}) |