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:
parent
7a4a207bed
commit
ca1bc74b2a
|
|
@ -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 className={styles.ledgerTable__cell}>关联订单</div>
|
||||||
|
<div className={styles.ledgerTable__cell}>备注</div>
|
||||||
<div className={styles.ledgerTable__cell}>时间</div>
|
<div className={styles.ledgerTable__cell}>时间</div>
|
||||||
</div>
|
</div>
|
||||||
{walletData.items.length === 0 ? (
|
{walletData.items.length === 0 ? (
|
||||||
|
|
@ -664,6 +665,9 @@ export default function UserDetailPage() {
|
||||||
<div className={styles.ledgerTable__cell}>
|
<div className={styles.ledgerTable__cell}>
|
||||||
{item.refOrderId || item.refTxHash || '-'}
|
{item.refOrderId || item.refTxHash || '-'}
|
||||||
</div>
|
</div>
|
||||||
|
<div className={styles.ledgerTable__cell}>
|
||||||
|
{item.memo || '-'}
|
||||||
|
</div>
|
||||||
<div className={styles.ledgerTable__cell}>{formatDate(item.createdAt)}</div>
|
<div className={styles.ledgerTable__cell}>{formatDate(item.createdAt)}</div>
|
||||||
</div>
|
</div>
|
||||||
))
|
))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue