mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-09 00:20:26 +08:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
this.typeDescription = ""
|
||
|
|
|
||
|
|
let that = this
|
||
|
|
this.types.forEach(function (v) {
|
||
|
|
if (v.code == that.provider.type) {
|
||
|
|
that.typeDescription = v.description
|
||
|
|
}
|
||
|
|
})
|
||
|
|
})
|