feat(notice): 添加路线图温馨提示文案
- 在路线图图片下方添加提示文字:"如有变化,以现场规定为准,谢谢配合!" - 使用浅黄色背景和主题棕色文字突出显示 - 添加圆角卡片样式,与整体页面风格保持一致 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Showing
1 changed file
with
11 additions
and
0 deletions
| ... | @@ -25,6 +25,7 @@ | ... | @@ -25,6 +25,7 @@ |
| 25 | @tap="handlePreviewImage" | 25 | @tap="handlePreviewImage" |
| 26 | /> | 26 | /> |
| 27 | </view> | 27 | </view> |
| 28 | + <view class="route-notice">如有变化,以现场规定为准,谢谢配合!</view> | ||
| 28 | <view style="height: 256rpx"></view> | 29 | <view style="height: 256rpx"></view> |
| 29 | <view class="footer"> | 30 | <view class="footer"> |
| 30 | <nut-checkbox-group v-model="checked"> | 31 | <nut-checkbox-group v-model="checked"> |
| ... | @@ -115,6 +116,16 @@ const confirmBtn = () => { | ... | @@ -115,6 +116,16 @@ const confirmBtn = () => { |
| 115 | } | 116 | } |
| 116 | } | 117 | } |
| 117 | } | 118 | } |
| 119 | + .route-notice { | ||
| 120 | + margin: 0 32rpx 32rpx; | ||
| 121 | + padding: 24rpx 32rpx; | ||
| 122 | + background-color: #fff9e6; | ||
| 123 | + border-radius: 16rpx; | ||
| 124 | + text-align: center; | ||
| 125 | + color: #a67939; | ||
| 126 | + font-size: 28rpx; | ||
| 127 | + border: 2rpx solid #ffe7ba; | ||
| 128 | + } | ||
| 118 | .footer { | 129 | .footer { |
| 119 | position: fixed; | 130 | position: fixed; |
| 120 | bottom: 0; | 131 | bottom: 0; | ... | ... |
-
Please register or login to post a comment