|
|
@ -158,7 +158,11 @@ const Index = () => {
|
|
|
|
render: (text, record) => {
|
|
|
|
render: (text, record) => {
|
|
|
|
if (text) {
|
|
|
|
if (text) {
|
|
|
|
const icon = statusIconMap[record.msg_status] || statusIconMap['default']
|
|
|
|
const icon = statusIconMap[record.msg_status] || statusIconMap['default']
|
|
|
|
return <Link to={`/order/chat/${record.crt_coli_sn}`}>查看会话 {icon}</Link>
|
|
|
|
return (
|
|
|
|
|
|
|
|
<Link to={`/order/chat/${record.crt_coli_sn}`} title={record.errors_code ? record.errors_code + '' + record.errors_title : ''}>
|
|
|
|
|
|
|
|
查看会话 {icon}
|
|
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|