等待后端更新接口

This commit is contained in:
2026-08-03 16:49:26 +08:00
parent ac5823547a
commit 5b79893650
131 changed files with 5324 additions and 1392 deletions
+29 -2
View File
@@ -551,6 +551,21 @@ textarea {
gap: 14px;
}
.auth-card .auth-field {
display: grid;
gap: 8px;
color: var(--ink);
font-weight: 800;
}
.auth-card .auth-field b {
color: var(--red);
}
.auth-card .auth-form-status:empty {
display: none;
}
.auth-card .input {
height: 50px;
background: #fffaf1;
@@ -637,8 +652,9 @@ textarea {
opacity: .72;
}
/* 接口列表为空时的统一占位样式 */
.api-empty {
/* 业务请求的加载、空数据、失败和无权限状态 */
.api-empty,
.api-state {
padding: 22px;
border: 1px dashed var(--line);
border-radius: 14px;
@@ -648,6 +664,17 @@ textarea {
font-weight: 800;
}
.api-state--loading {
color: var(--muted);
}
.api-state--error,
.api-state--forbidden {
border-color: rgba(160, 50, 45, .28);
color: var(--red);
background: rgba(160, 50, 45, .06);
}
.footer {
padding: 60px 0 36px;
color: rgba(255, 255, 255, .78);