mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 14:13:37 +08:00
change timepicker options to rctimepicker options
This commit is contained in:
parent
6b3a97b902
commit
fc66d27042
@ -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);
|
||||
````
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user