DatePeriodPicker日期控件
author: 闫申申
定义
展示当前时间往后的任意天数内的日期。
图片展示
代码演示
import Picker from 'pile/dist/components/picker'
const {DatePeriodPicker} = Picker
<DatePeriodPicker
textvalue="可控制天数(年、月、日)"
pickerAway = {function(e,t){
console.log(e,t)
}}
days= {7}
startData = "2017/12/29"
weekText = {["周日","周一","周二","周三","周四","周五","周六"]}
open = {false}
></DatePeriodPicker>
属性
参数 | 描述 | 数据类型 | 默认值 |
---|---|---|---|
textvalue | 默认文字 | string | |
days | 显示天数 | number | 7 |
startData | 开始时间 默认当前日期 格式 :2017/12/29 | string | |
weekText | 星期格式 | array | ["周日","周一","周二","周三","周四","周五","周六"] |
open | 是否默认展开 | bool | false |
pickerAway | 点击确认后回调,参数 3个:1,格式(array)当前选中的值(根据optOneArr替换日期);2,格式(string)当前承载textvalue的节点;3,返回时间格式(object),fmt:时间戳, data: yyyy/MM/dd | function | null |
原文: https://didi.github.io/pile.js/docs/2017/08/develop-components-picker-dateperiodpicker.html