2018-09-15 00:32:14 +08:00
|
|
|
|
---
|
2019-12-11 23:32:19 +08:00
|
|
|
|
order: 99
|
2018-09-15 00:32:14 +08:00
|
|
|
|
debug: true
|
|
|
|
|
title:
|
|
|
|
|
zh-CN: 后缀图标
|
|
|
|
|
en-US: Suffix
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
|
|
点击 TimePicker,然后可以在浮层中选择或者输入某一时间。
|
|
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
|
|
Click `TimePicker`, and then we could select or input a time in panel.
|
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
|
import { TimePicker } from 'antd';
|
2018-09-15 00:32:14 +08:00
|
|
|
|
import moment from 'moment';
|
2019-11-28 12:34:33 +08:00
|
|
|
|
import { SmileOutlined } from '@ant-design/icons';
|
2018-09-15 00:32:14 +08:00
|
|
|
|
|
|
|
|
|
function onChange(time, timeString) {
|
|
|
|
|
console.log(time, timeString);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ReactDOM.render(
|
2019-05-07 14:57:32 +08:00
|
|
|
|
<TimePicker
|
2020-06-06 13:56:26 +08:00
|
|
|
|
suffixIcon={<SmileOutlined />}
|
2019-05-07 14:57:32 +08:00
|
|
|
|
onChange={onChange}
|
|
|
|
|
defaultOpenValue={moment('00:00:00', 'HH:mm:ss')}
|
|
|
|
|
/>,
|
|
|
|
|
mountNode,
|
2018-09-15 00:32:14 +08:00
|
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
|
```
|