Add transfer tracking and secure admin access
This commit is contained in:
@@ -100,11 +100,13 @@ class TxDetailPage extends StatelessWidget {
|
||||
// 类型
|
||||
_Row(
|
||||
k: '类型',
|
||||
child: Text(
|
||||
tx.isIncome ? '收入' : '支出',
|
||||
style: TextStyle(fontSize: 13.5),
|
||||
),
|
||||
child: Text(tx.typeLabel, style: TextStyle(fontSize: 13.5)),
|
||||
),
|
||||
if (tx.isTransfer && tx.counterparty?.isNotEmpty == true)
|
||||
_Row(
|
||||
k: '转账对方',
|
||||
child: Text(tx.counterparty!, style: TextStyle(fontSize: 13.5)),
|
||||
),
|
||||
// 备注
|
||||
if (tx.note != null && tx.note!.isNotEmpty)
|
||||
_Row(
|
||||
|
||||
Reference in New Issue
Block a user