mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
14 lines
194 B
JavaScript
14 lines
194 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
this.selectCert = function (cert) {
|
||
|
|
NotifyPopup({
|
||
|
|
code: 200,
|
||
|
|
data: {
|
||
|
|
cert: cert,
|
||
|
|
certRef: {
|
||
|
|
isOn: true,
|
||
|
|
certId: cert.id
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
})
|