|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
|
import { Button, Tag, Radio, Popover, Form } from 'antd';
|
|
|
|
|
import { Button, Tag, Radio, Popover, Form, Space } from 'antd';
|
|
|
|
|
import { isEmpty, objectMapper, TagColorStyle } from '@/utils/commons';
|
|
|
|
|
import useConversationStore from '@/stores/ConversationStore';
|
|
|
|
|
import { OrderLabelDefaultOptions } from '@/stores/OrderStore';
|
|
|
|
@ -127,7 +127,7 @@ const ChatListFilter = ({ onFilterChange, activeList, ...props }) => {
|
|
|
|
|
setFilterOtype(e.target.value)
|
|
|
|
|
}}
|
|
|
|
|
/> */}
|
|
|
|
|
{tags.slice(0, 2).map((tag, ti) => (
|
|
|
|
|
{tags.slice(0, 3).map((tag, ti) => (
|
|
|
|
|
<Tag.CheckableTag
|
|
|
|
|
className='mb-1'
|
|
|
|
|
key={tag.key}
|
|
|
|
@ -190,14 +190,14 @@ const ChatListFilter = ({ onFilterChange, activeList, ...props }) => {
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
<Form.Item noStyle className='flex justify-center mb-0'>
|
|
|
|
|
<Button.Group>
|
|
|
|
|
<Space.Compact>
|
|
|
|
|
<Button onClick={onReset} type='primary' ghost>
|
|
|
|
|
重置
|
|
|
|
|
</Button>
|
|
|
|
|
{/* <Button htmlType='submit' type='primary'>
|
|
|
|
|
确定
|
|
|
|
|
</Button> */}
|
|
|
|
|
</Button.Group>
|
|
|
|
|
</Space.Compact>
|
|
|
|
|
</Form.Item>
|
|
|
|
|
</Form>
|
|
|
|
|
</>
|
|
|
|
|