微信小程序原生加vant改变日历组件开始和结束的默认文案

Posted 单身girl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序原生加vant改变日历组件开始和结束的默认文案相关的知识,希望对你有一定的参考价值。

<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: 
  //一定要放到data里这是关键
    formatter(day) 
      if (day.type === 'start') 
        day.bottomInfo = '入住';
       else if (day.type === 'end') 
        day.bottomInfo = '离店';
      
      return day;
    ,
  

以上是关于微信小程序原生加vant改变日历组件开始和结束的默认文案的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序-vant-weapp日历组件的使用(年月日)

微信小程序之自定义日历组件

微信小程序 vant日历自定义文案

微信小程序加vant组件库弹窗的使用及遇到的问题

微信小程序加vant组件库弹窗的使用及遇到的问题

微信小程序加vant组件库弹窗的使用及遇到的问题