diff --git a/src/views/customer_relation/index.jsx b/src/views/customer_relation/index.jsx
index 283cd93..49200d7 100644
--- a/src/views/customer_relation/index.jsx
+++ b/src/views/customer_relation/index.jsx
@@ -73,7 +73,7 @@ const Index = () => {
return '失败'
},
},
- { title: '发送时间', dataIndex: 'crt_send_datetime', key: 'crt_send_datetime' },
+ { title: '发送时间', dataIndex: 'crt_send_datetime', key: 'crt_send_datetime', sorter: (a, b) => dayjs(a.crt_send_datetime).unix() - dayjs(b.crt_send_datetime).unix() },
{ title: '模板', dataIndex: 'crt_template', key: 'crt_template' },
{ title: 'WhatsApp', dataIndex: 'crt_whatsapp', key: 'crt_whatsapp' },
{
@@ -82,7 +82,7 @@ const Index = () => {
key: 'crt_conversation_id',
render: (text, record) => {
if (text) {
- return 查看会话
+ return 查看会话 ${record.msg_status}
}
},
},