|
@@ -141,6 +141,20 @@ const MailList: React.FC<Props> = ({ defindConfig, visible, onClose, onChange })
|
|
|
>
|
|
|
{getUserAllList?.data?.data?.map((item: any) => <Select.Option value={item.userId} key={item.userId}>{item.nickname}</Select.Option>)}
|
|
|
</Select>
|
|
|
+ <Select
|
|
|
+ value={queryForm?.operAssistantIds}
|
|
|
+ onChange={(e) => setQueryForm({ ...queryForm, operAssistantIds: e })}
|
|
|
+ mode="multiple"
|
|
|
+ showSearch
|
|
|
+ style={{ minWidth: 110 }}
|
|
|
+ allowClear
|
|
|
+ placeholder="选择运营助手"
|
|
|
+ filterOption={(input, option) =>
|
|
|
+ (option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
+ }
|
|
|
+ >
|
|
|
+ {getUserAllList?.data?.data?.map((item: any) => <Select.Option value={item.userId} key={item.userId}>{item.nickname}</Select.Option>)}
|
|
|
+ </Select>
|
|
|
</>
|
|
|
</SearchBox>
|
|
|
|