hookehuyr

feat(notice): 添加路线图温馨提示文案

- 在路线图图片下方添加提示文字:"如有变化,以现场规定为准,谢谢配合!"
- 使用浅黄色背景和主题棕色文字突出显示
- 添加圆角卡片样式,与整体页面风格保持一致

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
......@@ -25,6 +25,7 @@
@tap="handlePreviewImage"
/>
</view>
<view class="route-notice">如有变化,以现场规定为准,谢谢配合!</view>
<view style="height: 256rpx"></view>
<view class="footer">
<nut-checkbox-group v-model="checked">
......@@ -115,6 +116,16 @@ const confirmBtn = () => {
}
}
}
.route-notice {
margin: 0 32rpx 32rpx;
padding: 24rpx 32rpx;
background-color: #fff9e6;
border-radius: 16rpx;
text-align: center;
color: #a67939;
font-size: 28rpx;
border: 2rpx solid #ffe7ba;
}
.footer {
position: fixed;
bottom: 0;
......