diff --git a/src/views/customer_relation/index.jsx b/src/views/customer_relation/index.jsx index a778ae1..f91da72 100644 --- a/src/views/customer_relation/index.jsx +++ b/src/views/customer_relation/index.jsx @@ -1,7 +1,7 @@ import { Link } from 'react-router-dom' import { Form, Input, Button, DatePicker, Select, Table } from 'antd' import dayjs from 'dayjs' -import { ReadIcon, DeliverIcon, SentIcon } from '@/components/Icons' +import { ReadIcon, DeliverIcon, SentIcon ,WaitingIcon,FailedIcon} from '@/components/Icons' import useCustomerRelationStore from '@/stores/CustomerRelationStore' const { RangePicker } = DatePicker @@ -12,9 +12,9 @@ const statusIconMap = { read: , delivered: , sent: , - failed: ❌, - accepted: πŸ•’, - default: πŸ•’, + failed: , + accepted: , + default: } const Index = () => { @@ -93,7 +93,7 @@ const Index = () => { render: (text, record) => { if (text) { const icon = statusIconMap[record.msg_status] || statusIconMap['default'] - return ζŸ₯ηœ‹δΌšθ― {icon} + return ζŸ₯ηœ‹δΌšθ― {icon} } }, },