2022-01-20 16:54:47 +08:00
|
|
|
---
|
|
|
|
order: 38
|
|
|
|
title:
|
|
|
|
zh-CN: 弹出位置
|
|
|
|
en-US: Placement
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
可以通过 `placement` 手动指定弹出的位置。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
You can manually specify the position of the popup via `placement`.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
|
|
|
import type { RadioChangeEvent } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import { Radio, Select } from 'antd';
|
|
|
|
import type { SelectCommonPlacement } from 'antd/es/_util/motion';
|
|
|
|
import React, { useState } from 'react';
|
2022-01-20 16:54:47 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [placement, SetPlacement] = useState<SelectCommonPlacement>('topLeft');
|
2022-01-20 16:54:47 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const placementChange = (e: RadioChangeEvent) => {
|
2022-01-20 16:54:47 +08:00
|
|
|
SetPlacement(e.target.value);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Radio.Group value={placement} onChange={placementChange}>
|
|
|
|
<Radio.Button value="topLeft">topLeft</Radio.Button>
|
|
|
|
<Radio.Button value="topRight">topRight</Radio.Button>
|
|
|
|
<Radio.Button value="bottomLeft">bottomLeft</Radio.Button>
|
|
|
|
<Radio.Button value="bottomRight">bottomRight</Radio.Button>
|
|
|
|
</Radio.Group>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<Select
|
|
|
|
defaultValue="HangZhou"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
dropdownMatchSelectWidth={false}
|
|
|
|
placement={placement}
|
2022-09-19 18:01:16 +08:00
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'HangZhou',
|
|
|
|
label: 'HangZhou #310000',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'NingBo',
|
|
|
|
label: 'NingBo #315000',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'WenZhou',
|
|
|
|
label: 'WenZhou #325000',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
2022-01-20 16:54:47 +08:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
export default App;
|
2022-01-20 16:54:47 +08:00
|
|
|
```
|