feat(admin-web): 用户钱包分类账明细添加备注列

在用户管理页面的钱包分类账明细表格中添加"备注"列,
用于显示转账对象信息,如"转账至 D25XXXXXX"或"来自 D25XXXXXX 的转账"。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-09 07:20:21 -08:00
parent 7a4a207bed
commit ca1bc74b2a
1 changed files with 4 additions and 0 deletions

View File

@ -636,6 +636,7 @@ export default function UserDetailPage() {
<div className={styles.ledgerTable__cell}></div>
<div className={styles.ledgerTable__cell}></div>
<div className={styles.ledgerTable__cell}></div>
<div className={styles.ledgerTable__cell}></div>
<div className={styles.ledgerTable__cell}></div>
</div>
{walletData.items.length === 0 ? (
@ -664,6 +665,9 @@ export default function UserDetailPage() {
<div className={styles.ledgerTable__cell}>
{item.refOrderId || item.refTxHash || '-'}
</div>
<div className={styles.ledgerTable__cell}>
{item.memo || '-'}
</div>
<div className={styles.ledgerTable__cell}>{formatDate(item.createdAt)}</div>
</div>
))