fix(app): 修复课程管理待确认按钮文字颜色隐形问题

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
richarjiang
2026-09-14 14:41:25 +08:00
parent b72357030d
commit 58c6d2092a

View File

@@ -111,7 +111,7 @@
<text class="action-btn-text action-btn-text--ghost">婉拒</text> <text class="action-btn-text action-btn-text--ghost">婉拒</text>
</view> </view>
<view class="action-btn action-btn--primary" @tap.stop="handleConfirm(booking)"> <view class="action-btn action-btn--primary" @tap.stop="handleConfirm(booking)">
<text class="action-btn-text">确认预约</text> <text class="action-btn-text action-btn-text--light">确认预约</text>
</view> </view>
</view> </view>
@@ -982,11 +982,19 @@ $cream: #efe4cf; // base cream tint
&--primary { &--primary {
background: $sage; background: $sage;
border-color: $sage; border-color: $sage;
.action-btn-text {
color: #fff;
}
} }
&--confirm { &--confirm {
background: $ink; background: $ink;
border-color: $ink; border-color: $ink;
.action-btn-text {
color: #fff;
}
} }
&--ghost { &--ghost {