1
|
|
-import React, { useCallback, useRef } from 'react';
|
2
|
1
|
import { BlockOutlined } from '@ant-design/icons';
|
3
|
2
|
import { useSetState } from 'ahooks';
|
4
|
3
|
import { Button } from 'antd';
|
5
|
4
|
import cls from 'classnames';
|
|
5
|
+import React, { useCallback, useRef } from 'react';
|
6
|
6
|
import { QxAppSelector } from '../qx-app-selector';
|
7
|
7
|
import type { InputSelectProps } from '../qx-input-select';
|
8
|
8
|
import { QxInputSelect } from '../qx-input-select';
|
...
|
...
|
@@ -66,6 +66,7 @@ export const QxFormSelect: React.FC<FormSelectProps> = (props) => { |
66
|
66
|
dropdownProps={{
|
67
|
67
|
showSearch: true,
|
68
|
68
|
loading,
|
|
69
|
+ listHeight: 160,
|
69
|
70
|
renderBottom: (
|
70
|
71
|
<Button
|
71
|
72
|
className={`${prefix}__dropdown-bottom`}
|
...
|
...
|
|