Lines Matching refs:date
20 … text selector.<br>- **time**: time selector.<br>- **date**: date selector.<br>- **datetime**: dat…
43 | start | <time> | 1970-1-1 | No | Start date of the date selector, in the f…
44 | end | <time> | 2100-12-31 | No | End date of the date selector, in the for…
45 | selected | string | Current date | No | Default value of the date selector…
47 …| false | No | Whether to display the lunar calendar switch in the date selector. When this…
53 …date and time | No | Default value of the date and time selector. Th…
54 …er | 24<sup>1-4</sup><br>-<sup>5+</sup> | No | Time format used by the date and time selector. …
56 … | No | Whether to display the lunar calendar switch in the date and time selector. …
102 | change | { year:year, month:month, day:day } | Triggered when a value is specified for the date s…
108 … hour:hour, minute:minute } | Triggered when a value is specified for the date and time selector.|
209 const date = new Date();
210 const hours = date.getHours();
211 const minutes = date.getMinutes();
231 Selected: {{date}}
233 …<picker-view class="time-picker" type="date" selected="{{defaultTime}}" @change="handleChange" lun…
257 date: "",
260 this.date = data.year + "/" + data.month + "/" + data.day + "";
274 …<picker-view class="date-picker" type="datetime" hours="24" lunarswitch="true" @change="handleCha…