fix: formate code and test money
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m8s

This commit is contained in:
luo
2026-08-18 10:54:01 +08:00
parent 857d565f33
commit 93f67967c5
32 changed files with 183 additions and 112 deletions

View File

@@ -267,8 +267,8 @@
:deep(> .el-card__body) {
box-sizing: border-box;
min-height: 0;
overflow-y: auto;
padding-bottom: 24px;
overflow-y: auto;
}
}
@@ -303,10 +303,10 @@
:deep(.el-card__body) {
display: flex;
height: auto;
flex-direction: column;
justify-content: space-between;
gap: 10px;
justify-content: space-between;
height: auto;
overflow: visible;
}
}
@@ -318,41 +318,41 @@
}
.member-card__header {
justify-content: space-between;
gap: 12px;
justify-content: space-between;
}
.member-card__identity {
display: flex;
min-width: 0;
flex: 1;
align-items: center;
gap: 10px;
align-items: center;
min-width: 0;
}
.member-card__avatar {
flex-shrink: 0;
font-weight: 600;
color: var(--el-color-primary);
background: var(--el-color-primary-light-9);
font-weight: 600;
}
.member-card__name {
min-width: 0;
flex: 1;
min-width: 0;
overflow: hidden;
color: var(--el-text-color-primary);
font-size: 16px;
font-weight: 600;
color: var(--el-text-color-primary);
text-overflow: ellipsis;
white-space: nowrap;
}
.member-card__info {
justify-content: space-between;
gap: 16px;
color: var(--el-text-color-regular);
justify-content: space-between;
font-size: 13px;
color: var(--el-text-color-regular);
span:last-child {
min-width: 0;
@@ -381,19 +381,19 @@
margin-top: 20px;
}
@media (max-width: 1400px) {
@media (width <= 1400px) {
.member-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 1024px) {
@media (width <= 1024px) {
.member-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
@media (width <= 640px) {
.member-grid {
grid-template-columns: 1fr;
}