超时订单按打手统计,抢单大厅标注限时任务

This commit is contained in:
yml2213
2026-08-01 19:18:20 +08:00
parent 23ad60a1ef
commit 3650526863
7 changed files with 87 additions and 3 deletions
@@ -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,