前端页面

This commit is contained in:
robin
2026-02-24 11:33:44 +08:00
parent f3af234308
commit 60dc87e0f2
141 changed files with 6845 additions and 133 deletions

View File

@@ -0,0 +1,20 @@
Tea.context(function () {
if (typeof this.health == "undefined") {
this.health = {
keySyncRate: 1.0,
decryptFailRate: 0.0
};
}
if (typeof this.echLogs == "undefined") {
this.echLogs = [];
}
this.openMfaRollback = function (logId) {
teaweb.popup("/httpdns/ech/rollbackMfaPopup?logId=" + logId, {
height: "26em",
width: "48em",
title: "全域安全受控降级告警双人MFA授权"
})
};
});