修改订单管理
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m12s

This commit is contained in:
sexygoat
2026-02-28 17:46:42 +08:00
parent 7b459b5c8d
commit 7e9acda1ab
3 changed files with 49 additions and 13 deletions

View File

@@ -183,6 +183,18 @@
prop: 'operator_name',
formatter: (value) => value || '-'
},
{
label: '是否超时',
formatter: (_, data) => {
if (data.is_expired === undefined || data.is_expired === null) return '-'
return data.is_expired ? '是' : '否'
}
},
{
label: '超时时间',
prop: 'expires_at',
formatter: (value) => (value ? formatDateTime(value) : '-')
},
{
label: t('orderManagement.table.commissionStatus'),
formatter: (_, data) => getCommissionStatusText(data.commission_status)