{{ currentOrder.order_no }}
{{ getOrderTypeText(currentOrder.order_type) }}
{{ currentOrder.payment_status_text }}
{{ formatCurrency(currentOrder.total_amount) }}
{{ getPaymentMethodText(currentOrder.payment_method) }}
{{ getBuyerTypeText(currentOrder.buyer_type) }}
{{ currentOrder.buyer_phone || '-' }}
{{ currentOrder.buyer_nickname || '-' }}
{{ getCommissionStatusText(currentOrder.commission_status) }}
{{ currentOrder.paid_at ? formatDateTime(currentOrder.paid_at) : '-' }}
{{ formatDateTime(currentOrder.created_at) }}
{{ formatDateTime(currentOrder.updated_at) }}
{{ '订单项' }}
{{
row.package_type === 'formal'
? '正式套餐'
: row.package_type === 'addon'
? '加油包'
: '-'
}}
{{ formatCurrency(row.unit_price) }}
{{ formatCurrency(row.amount) }}