+
+ {{ t('wallet.type') || '类型' }}
+ {{ txLabel(detail) }}
+
+
+ {{ t('wallet.amount') || '金额' }}
+ {{ formatMoney(detail.amount, locale) }}
+
+
+ {{ t('wallet.note') || '备注' }}
+ {{ txSummaryLabel(detail, t) || '-' }}
+
+
+ {{ t('wallet.balance_before') || '变动前余额' }}
+ {{ formatMoney(detail.balanceBefore, locale) }}
+
+
+ {{ t('wallet.balance_after') || '变动后余额' }}
+ {{ formatMoney(detail.balanceAfter, locale) }}
+
+
+ {{ t('wallet.frozen_before') || '冻结前' }}
+ {{ formatMoney(detail.frozenBefore, locale) }}
+
+
+ {{ t('wallet.frozen_after') || '冻结后' }}
+ {{ formatMoney(detail.frozenAfter, locale) }}
+
+
+ {{ t('wallet.time') || '时间' }}
+ {{ new Date(detail.createdAt).toLocaleString() }}
+
+
+ {{ t('wallet.transaction_id') || '流水号' }}
+ {{ detail.transactionId }}
+
+
+