添加患者信息有效性检查,优化界面布局和错误提示

This commit is contained in:
yuchenglong
2025-11-28 11:39:07 +08:00
parent 87b3f8e539
commit f4cff05c1f
3 changed files with 79 additions and 36 deletions

View File

@@ -27,10 +27,26 @@
background: url(../../assets/u2-card.png) 100% no-repeat;
background-size: 100% 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
padding: 40px 48px;
}
.u2-info-top {
display: flex;
flex-direction: row;
align-items: center;
padding: 40px 48px;
width: 100%;
flex: 1;
}
.u2-error-msg {
width: 100%;
text-align: center;
color: red;
font-size: 28px;
font-weight: bold;
margin-top: 10px;
}
.u2-avatar-container {