<view class="item-column">
<text class="label">入离店时间text>
<text class="value">{{item.checkInDate}} 至 {{item.checkOutDate}}text>
<van-icon name="edit" class="tips" data-item="{{item}}" bindtap="onEdit" wx:if="{{item.odrStatus == 1 || item.odrStatus == 3}}" />
<van-calendar color="#016EEA" show="{{orderShow}}" type="range" bind:confirm="handlerEdit" bind:close="onOrderDate" default-date="{{orderDate}}" formatter="{{formatter}}" />
view>
//formatter="{{formatter}}"这个是关键
Page({
data: {
formatter(day) {
if (day.type === 'start') {
day.bottomInfo = '入住';
} else if (day.type === 'end') {
day.bottomInfo = '离店';
}
return day;
},
}