...
|
...
|
@@ -795,7 +795,7 @@ export const QxFilterCondition: React.FC<paramFilterConditionProps> = ({ |
795
|
795
|
{getOperationOptions(item?.field) &&
|
796
|
796
|
getOperationOptions(item?.field).length > 0 && (
|
797
|
797
|
<Dropdown
|
798
|
|
- overlay={
|
|
798
|
+ dropdownRender={() => (
|
799
|
799
|
<Menu>
|
800
|
800
|
{getOperationOptions(item?.field).map((oVal: any, oKey: number) => (
|
801
|
801
|
<Menu.Item
|
...
|
...
|
@@ -834,7 +834,7 @@ export const QxFilterCondition: React.FC<paramFilterConditionProps> = ({ |
834
|
834
|
</Menu.Item>
|
835
|
835
|
))}
|
836
|
836
|
</Menu>
|
837
|
|
- }
|
|
837
|
+ )}
|
838
|
838
|
>
|
839
|
839
|
<Button
|
840
|
840
|
className={'qx-query-text-opt'}
|
...
|
...
|
@@ -925,7 +925,7 @@ export const QxFilterCondition: React.FC<paramFilterConditionProps> = ({ |
925
|
925
|
<span>条件组合方式</span>
|
926
|
926
|
<div style={{ cursor: 'pointer', textAlign: 'right' }}>
|
927
|
927
|
<Dropdown
|
928
|
|
- overlay={
|
|
928
|
+ dropdownRender={() => (
|
929
|
929
|
<Menu>
|
930
|
930
|
{OperatorCol.map((oc: any) => (
|
931
|
931
|
<Menu.Item key={oc.key} onClick={(e) => setSqlType(cloneDeep(e.key))}>
|
...
|
...
|
@@ -933,7 +933,7 @@ export const QxFilterCondition: React.FC<paramFilterConditionProps> = ({ |
933
|
933
|
</Menu.Item>
|
934
|
934
|
))}
|
935
|
935
|
</Menu>
|
936
|
|
- }
|
|
936
|
+ )}
|
937
|
937
|
>
|
938
|
938
|
<span>
|
939
|
939
|
{sqlTypeTextConvert(getOperCol(sqlType)?.text)} <DownOutlined />
|
...
|
...
|
|