DatePeriodPicker日期控件

author: 闫申申

定义

展示当前时间往后的任意天数内的日期。

图片展示

DatePeriodPicker 日期控件 - 图1

代码演示

  1. import Picker from 'pile/dist/components/picker'
  2. const {DatePeriodPicker} = Picker
  3. <DatePeriodPicker
  4. textvalue="可控制天数(年、月、日)"
  5. pickerAway = {function(e,t){
  6. console.log(e,t)
  7. }}
  8. days= {7}
  9. startData = "2017/12/29"
  10. weekText = {["周日","周一","周二","周三","周四","周五","周六"]}
  11. open = {false}
  12. ></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