Commit 08f0322d authored by 陈万宝's avatar 陈万宝

feat:新增大额支付标签

parent d2761ac3
...@@ -263,11 +263,12 @@ export const getColumns = props => { ...@@ -263,11 +263,12 @@ export const getColumns = props => {
{ {
title: '售后单ID', title: '售后单ID',
dataIndex: 'serviceNo', dataIndex: 'serviceNo',
width: 300, width: 310,
render: (serviceNo, r) => ( render: (serviceNo, r) => (
<div> <div>
{r.timeout ? <Tag color="red">{serviceNo}</Tag> : serviceNo} {r.timeout ? <Tag color="red">{serviceNo}</Tag> : serviceNo}
{<Badge count={r.reminderFlag ? '' : ''} size="default" />} {<Badge count={r.reminderFlag ? '' : ''} size="default" />}
{<Badge count={+r.autoCancelTimeType === 1 ? '大额支付' : ''} size="default" />}
</div> </div>
), ),
}, },
......
...@@ -14,6 +14,7 @@ export const column = [ ...@@ -14,6 +14,7 @@ export const column = [
<div> <div>
{r.auditTimeOut ? <Tag color="red">{orderId}</Tag> : orderId} {r.auditTimeOut ? <Tag color="red">{orderId}</Tag> : orderId}
{<Badge count={r.reminderFlag ? '' : ''} size="small" />} {<Badge count={r.reminderFlag ? '' : ''} size="small" />}
{<Badge count={+r.autoCancelTimeType === 1 ? '大额支付' : ''} size="default" />}
</div> </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