|
@@ -1127,6 +1127,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
|
(option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
}
|
|
|
>
|
|
|
+ <Select.Option value={0}>未操作</Select.Option>
|
|
|
{customerList.map((item: any) => <Select.Option value={item.userId} key={item.userId}>{item.nickname}</Select.Option>)}
|
|
|
</Select>
|
|
|
</Form.Item></Col>}
|
|
@@ -1142,6 +1143,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
|
(option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
}
|
|
|
>
|
|
|
+ <Select.Option value={0}>未操作</Select.Option>
|
|
|
{operateList.map((item: any) => <Select.Option value={item.userId} key={item.userId}>{item.nickname}</Select.Option>)}
|
|
|
</Select>
|
|
|
</Form.Item></Col>}
|
|
@@ -1157,6 +1159,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
|
(option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
}
|
|
|
>
|
|
|
+ <Select.Option value={0}>未操作</Select.Option>
|
|
|
{gsList.map((item: any) => <Select.Option value={item.userId} key={item.userId}>{item.nickname}</Select.Option>)}
|
|
|
</Select>
|
|
|
</Form.Item></Col>}
|