import { useCallback, useEffect, useState } from 'react' import { ReloadOutlined, ReadOutlined, CheckSquareOutlined } from '@ant-design/icons' import { Flex, Button, Tooltip, List,Radio,Typography,Divider,Drawer, Dropdown, Input, Checkbox } from 'antd' const MailBox = (props) => { const [openOrder, setOpenOrder] = useState(false) return ( <>
{ console.info('menu', item) }, }} onClick={() => { console.info('新邮件') }}> 新邮件
今日任务
} itemLayout='vertical' size='large' pagination={false} dataSource={[ { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: '250520-LSS250429038 团的 变更 �确认:Japan Fleet', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Your Thailand Private tour by Asia Highlights 超长主题怎么办????????????到框框到得奖看到', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Personal information', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Your Future Trip with Asia Highlights', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: '回复: 回复:中华游251110-LSS250413051(AH)团计划', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Greeting from Asia Highlights Alisa', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Have you made any decisions about your Japan trip', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Sri Lanka tour', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: How do you like the itinerary 3', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Re: Re: Final cost', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Reference Number: LSS240628079', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Personal information and Hiroshima tour for 2 people', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, { key: Math.random().toString(36).substring(2, 9), description: 'Fran Grundman ', title: 'Re: Asia Travel Tips /LSS250429038', mailDate: '2025-05-01 19:21:00', orderNo: 'LSS250501006', country: 'Thailand', }, ]} renderItem={(item) => ( 回复, // 转发, // ]} extra={}> console.info('item: ', item)} title={ console.info('')}>} description={item.description + ' ' + item.mailDate} /> {item.content}LSS250501006, Thailand )} /> setOpenOrder(false)}> 是否重要 状态 催信 ) } export default MailBox