Add transfer tracking and secure admin access

This commit is contained in:
2026-07-26 11:57:57 +08:00
parent 0738953e6d
commit 7df25edd96
111 changed files with 6379 additions and 1934 deletions
@@ -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(