超时订单按打手统计,抢单大厅标注限时任务
This commit is contained in:
@@ -196,6 +196,18 @@ export default function WorkersPanel() {
|
||||
width: 120,
|
||||
render: (_, row) => formatMoney(row.wallet.frozenDepositAmount),
|
||||
},
|
||||
{
|
||||
title: '超时订单',
|
||||
width: 110,
|
||||
render: (_, row) => {
|
||||
const count = Number(row.timeoutOrderCount || 0)
|
||||
return count > 0 ? (
|
||||
<Tag color="red">{count} 单</Tag>
|
||||
) : (
|
||||
<Typography.Text type="secondary">0</Typography.Text>
|
||||
)
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
width: 130,
|
||||
|
||||
Reference in New Issue
Block a user