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.
|
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
|
```tsx
|
2019-11-28 12:34:33 +08:00
|
|
|
|
import { SmileOutlined } from '@ant-design/icons';
|
2022-05-21 22:14:15 +08:00
|
|
|
|
import { TimePicker } from 'antd';
|
2022-05-21 23:04:51 +08:00
|
|
|
|
import type { Dayjs } from 'dayjs';
|
2022-02-14 14:40:40 +08:00
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
import customParseFormat from 'dayjs/plugin/customParseFormat';
|
2022-05-21 22:14:15 +08:00
|
|
|
|
import React from 'react';
|
2022-02-14 14:40:40 +08:00
|
|
|
|
|
|
|
|
|
dayjs.extend(customParseFormat);
|
2018-09-15 00:32:14 +08:00
|
|
|
|
|
2022-05-21 23:04:51 +08:00
|
|
|
|
const onChange = (time: Dayjs, timeString: string) => {
|
2018-09-15 00:32:14 +08:00
|
|
|
|
console.log(time, timeString);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
};
|
2018-09-15 00:32:14 +08:00
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
|
const App: React.FC = () => (
|
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}
|
2022-02-14 14:40:40 +08:00
|
|
|
|
defaultOpenValue={dayjs('00:00:00', 'HH:mm:ss')}
|
2022-04-03 23:27:45 +08:00
|
|
|
|
/>
|
2018-09-15 00:32:14 +08:00
|
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
|
```
|