Fix:4456 【旅居商城小程序】待确认/待入住订单详情页,修改入住时间增加原定入住时间显示

This commit is contained in:
linxi
2025-11-11 16:16:26 +08:00
parent bc53ad76fb
commit 9151f3326b
2 changed files with 13 additions and 3 deletions
+12 -3
View File
@@ -5,9 +5,14 @@
<view class="picker-header">
<text class="title">查看可预约日期</text>
</view>
<view class="v12-my-3">
<text class="v12-font-28 v12-dark-text v12-mr-3">请选择入住日期</text>
<text class="v12-font-28 v12-primary-text">{{ ` 共计${minBookingDays}` }}</text>
<view class="v12-align-center v12-justify-between">
<view class="v12-my-3">
<text class="v12-font-24 v12-dark-text v12-mr-3">请选择入住日期</text>
<text class="v12-font-24 v12-primary-text">{{ ` 共计${minBookingDays}` }}</text>
</view>
<view v-if="originDate" class="v12-font-24 v12-primary-text">
原定时间{{ originDate }}
</view>
</view>
<view class="calendar">
<view class="calendar-header">
@@ -62,6 +67,10 @@ export default {
name: 'DateRangePicker',
props: {
originDate: {
type: String,
default: ''
},
show: {
type: Boolean,
default: false
+1
View File
@@ -178,6 +178,7 @@
</Calendar> -->
<DateRangePicker
ref="dateRangePicker"
:originDate="orderInfo.travelGroupOrderInfo.orderStartDate"
v-model="dateRange"
:show="showDatePicker"
:minBookingDays="orderInfo.minBookingDays"