diff --git a/src/views/OrderFollow.jsx b/src/views/OrderFollow.jsx index bbfa283..fc72eb1 100644 --- a/src/views/OrderFollow.jsx +++ b/src/views/OrderFollow.jsx @@ -188,10 +188,11 @@ function OrderGroupTable({ formValues }) { if (record.buytime > 0) regularText = '(R' + record.buytime + ')' return ( - {isNotEmpty(record.coli_guest_WhatsApp) && } - + } + /> {text + regularText} - { // 1新订单;2未读消息;3需一催;4需二催;5需三催;6未处理邮件 const needTo = '要催信' + (record.coli_ordertype - 2) @@ -224,23 +225,35 @@ function OrderGroupTable({ formValues }) { } }, { - title: '报价title', + title: '报价 Title', dataIndex: 'lettertitle', ellipsis: true, - hidden: false + hidden: false, + // render: (text, record) => { + // return ( + // {text} + // ) + // } }, { title: '出发日期', dataIndex: 'COLI_OrderStartDate', - width: 150, + width: 120, hidden: false }, { title: '客人最后一次回复时间', dataIndex: 'last_received_time', + width: 180, + render: (text, record) => { + if (record.last_received_time) { + return new dayjs(record.last_received_time).format('YYYY-MM-DD HH:mm:ss') + } + } }, { title: '附加信息', + ellipsis: true, dataIndex: 'COLI_Introduction', }, ]