ant-design/components/cascader/demo/suffix.md

94 lines
1.7 KiB
Markdown
Raw Normal View History

2018-09-14 22:22:43 +08:00
---
order: 11
debug: true
title:
zh-CN: 自定义图标
en-US: Custom Icons
2018-09-14 22:22:43 +08:00
---
## zh-CN
通过 `suffixIcon` 自定义选择框后缀图标,通过 `expandIcon` 自定义次级菜单展开图标。
2018-09-14 22:22:43 +08:00
## en-US
Use `suffixIcon` to customize the selection box suffix icon, and use `expandIcon` to customize the current item expand icon.
2018-09-14 22:22:43 +08:00
```tsx
import { SmileOutlined } from '@ant-design/icons';
2022-05-21 22:14:15 +08:00
import { Cascader } from 'antd';
import React from 'react';
2018-09-14 22:22:43 +08:00
interface Option {
value: string;
label: string;
children?: Option[];
}
2018-09-14 22:22:43 +08:00
const options: Option[] = [
2019-05-07 14:57:32 +08:00
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hangzhou',
children: [
{
value: 'xihu',
label: 'West Lake',
},
],
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
children: [
{
value: 'zhonghuamen',
label: 'Zhong Hua Men',
},
],
},
],
},
];
2018-09-14 22:22:43 +08:00
const onChange = (value: string[]) => {
2018-09-14 22:22:43 +08:00
console.log(value);
};
2018-09-14 22:22:43 +08:00
const App: React.FC = () => (
<>
2018-09-14 22:50:35 +08:00
<Cascader
suffixIcon={<SmileOutlined />}
2018-09-14 22:50:35 +08:00
options={options}
onChange={onChange}
placeholder="Please select"
/>
<br />
<br />
<Cascader suffixIcon="ab" options={options} onChange={onChange} placeholder="Please select" />
<br />
<br />
2018-09-14 22:50:35 +08:00
<Cascader
expandIcon={<SmileOutlined />}
2018-09-14 22:50:35 +08:00
options={options}
onChange={onChange}
placeholder="Please select"
/>
<br />
<br />
<Cascader expandIcon="ab" options={options} onChange={onChange} placeholder="Please select" />
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```