This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user