fix
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 6s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
孙诚
2025-12-30 18:49:46 +08:00
parent 1f01d13ed3
commit 4b322494ba
9 changed files with 365 additions and 231 deletions

View File

@@ -90,12 +90,17 @@ const hasActions = computed(() => !!slots['header-actions'])
margin: 0;
text-align: center;
color: var(--van-text-color, #323233);
/*超出长度*/
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.header-stats {
display: flex;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: 12px;
}
@@ -104,10 +109,16 @@ const hasActions = computed(() => !!slots['header-actions'])
margin: 0;
font-size: 14px;
color: var(--van-text-color-2, #646566);
flex: 1;
grid-column: 2;
text-align: center;
}
/* 按钮区域放在右侧 */
.header-stats :deep(> :last-child:not(.stats-text)) {
grid-column: 3;
justify-self: end;
}
.popup-scroll-content {
flex: 1;
overflow-y: auto;