Commit f796c439 authored by 杨鑫's avatar 杨鑫

feat: 售后订单管理:添加仅退款(发货中)字段

parent 3bd3c6d1
......@@ -257,21 +257,20 @@ export const getColumns = props => {
</span>
);
}
// if (+serviceType === 4) {
// return <span style={{ color: '#ff1616' }}> 仅退款(发货中)</span>;
// }
if (+serviceType === 4) {
return <span style={{ color: '#ff1616' }}> 仅退款(发货中)</span>;
}
return <span>退货退款</span>;
},
},
{
title: '售后单ID',
dataIndex: 'serviceNo',
width: 310,
width: 300,
render: (serviceNo, r) => (
<div>
{r.timeout ? <Tag color="red">{serviceNo}</Tag> : serviceNo}
{<Badge count={r.reminderFlag ? '' : ''} size="default" />}
{<Badge count={+r.autoCancelTimeType === 1 ? '大额支付' : ''} size="default" />}
</div>
),
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment