- 合并 4 个单页分包:report→pkg-profile/reports, followup→pkg-profile/followups, events→pkg-profile/events, device-sync→pkg-health - consultation/detail 移出主包到 pkg-consultation 分包(减少主包体积) - doctor 18 页拆分为 pkg-doctor-core(8页) + pkg-doctor-clinical(10页) - 全部导航路径和 import 路径同步更新 - 分包 10→8 个,主包页面 13→12
99 lines
1.5 KiB
SCSS
99 lines
1.5 KiB
SCSS
@import '../../../../styles/variables.scss';
|
|
@import '../../../../styles/mixins.scss';
|
|
|
|
.create-page {
|
|
min-height: 100vh;
|
|
background: $bg;
|
|
padding: 24px;
|
|
padding-bottom: 200px;
|
|
}
|
|
|
|
.section {
|
|
background: $card;
|
|
border-radius: $r;
|
|
padding: 24px;
|
|
margin-bottom: 16px;
|
|
box-shadow: $shadow-sm;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: var(--tk-font-body-lg);
|
|
font-weight: bold;
|
|
color: $tx;
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.form-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 0;
|
|
border-bottom: 1px solid $bd-l;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
&--textarea {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
|
|
.form-label {
|
|
font-size: var(--tk-font-h1);
|
|
color: $tx2;
|
|
flex-shrink: 0;
|
|
min-width: 140px;
|
|
}
|
|
|
|
.form-input {
|
|
flex: 1;
|
|
text-align: right;
|
|
font-size: var(--tk-font-h1);
|
|
color: $tx;
|
|
}
|
|
|
|
.form-value {
|
|
font-size: var(--tk-font-h1);
|
|
color: $tx;
|
|
|
|
&.placeholder {
|
|
color: $tx3;
|
|
}
|
|
}
|
|
|
|
.form-textarea {
|
|
width: 100%;
|
|
margin-top: 12px;
|
|
font-size: var(--tk-font-h1);
|
|
color: $tx;
|
|
min-height: 120px;
|
|
background: $bg;
|
|
border-radius: $r-sm;
|
|
padding: 16px;
|
|
}
|
|
|
|
.submit-btn {
|
|
background: $pri;
|
|
border-radius: $r-sm;
|
|
padding: 24px;
|
|
text-align: center;
|
|
margin-top: 24px;
|
|
|
|
&:active {
|
|
background: $pri-d;
|
|
}
|
|
|
|
&--disabled {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.submit-btn__text {
|
|
font-size: var(--tk-font-num);
|
|
font-weight: bold;
|
|
color: $white;
|
|
}
|