微信小程序van-datetime-picker打开后设置默认时间如:当天
Posted 单身girl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序van-datetime-picker打开后设置默认时间如:当天相关的知识,希望对你有一定的参考价值。
<van-field size="large" readonly bind:tap="openPicker" is-link required label="到达时间" error-message="arriveTimeError" model:value="arriveTime" bind:focus="arriveTimeFocus" bind:blur="arriveTimeRules"></van-field>
<van-action-sheet title="选择到达时间" show=" show " bind:close="onClose" >
<van-datetime-picker type="datetime" bind:cancel="onCancel"
bind:confirm="onConfirm" value="currentDate" />
</van-action-sheet>
data:
arriveTime: '',
currentDate:new Date().getTime()
//关键点在currentDate:new Date().getTime()
//和 van-datetime-picker 的value="currentDate"这个属性
以上是关于微信小程序van-datetime-picker打开后设置默认时间如:当天的主要内容,如果未能解决你的问题,请参考以下文章