change timepicker options to rctimepicker options

This commit is contained in:
qubaoming 2016-04-14 15:48:16 +08:00
parent 6b3a97b902
commit fc66d27042
2 changed files with 4 additions and 7 deletions

View File

@ -13,6 +13,6 @@ function onChange(value) {
}
ReactDOM.render(
<DatePicker showTime={{format:'HH:mm'}} format="yyyy-MM-dd HH:mm:ss" placeholder="请选择时间" onChange={onChange} />
<DatePicker showTime format="yyyy-MM-dd HH:mm:ss" placeholder="请选择时间" onChange={onChange} />
, mountNode);
````

View File

@ -97,9 +97,9 @@ export default function wrapPicker(Picker, defaultFormat) {
const timeFormat = props.showTime && props.showTime.format;
const rcTimePickerProps = {
formatter: new DateTimeFormat(timeFormat || 'HH:mm:ss'),
showSecond: timeFormat && timeFormat.indexOf('ss') >= 0,
showHour: timeFormat && timeFormat.indexOf('HH') >= 0
formatter: new DateTimeFormat(timeFormat || 'HH:mm:ss'),
showSecond: timeFormat && timeFormat.indexOf('ss') >= 0,
showHour: timeFormat && timeFormat.indexOf('HH') >= 0
};
const timePicker = props.showTime ? (
<TimePicker
@ -111,9 +111,6 @@ export default function wrapPicker(Picker, defaultFormat) {
{...rcTimePickerProps}
/>
) : null;
console.log(timePicker)
console.log('....')
return (
<Picker