From df6aa60006139ebed0ab99ffb6726092be63f71c Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 17 Jul 2026 10:49:52 +0800 Subject: [PATCH] ui: transfer_info display as flat text rows instead of read-only Form --- wwwroot/transfer_info.ui | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/wwwroot/transfer_info.ui b/wwwroot/transfer_info.ui index e5e8715..64b8ef9 100644 --- a/wwwroot/transfer_info.ui +++ b/wwwroot/transfer_info.ui @@ -17,19 +17,20 @@ } }, { - "widgettype": "Form", + "widgettype": "VBox", "options": { - "readonly": true, - "fields": [ - {"name": "account_name", "label": "收款户名", "uitype": "str"}, - {"name": "bank_name", "label": "开户银行", "uitype": "str"}, - {"name": "bank_branch", "label": "开户支行", "uitype": "str"}, - {"name": "account_no", "label": "收款账号", "uitype": "str"}, - {"name": "amount", "label": "转账金额", "uitype": "str"}, - {"name": "tcode", "label": "转账码", "uitype": "str"}, - {"name": "curdate", "label": "日期", "uitype": "str"} - ] - } + "css": "card", + "padding": "12px" + }, + "subwidgets": [ + {"widgettype": "Text", "options": {"text": "银行名称:{{params_kw.bank_name}}"}}, + {"widgettype": "Text", "options": {"text": "开户支行:{{params_kw.bank_branch}}"}}, + {"widgettype": "Text", "options": {"text": "收款户名:{{params_kw.account_name}}"}}, + {"widgettype": "Text", "options": {"text": "收款账号:{{params_kw.account_no}}"}}, + {"widgettype": "Text", "options": {"text": "转账金额:{{params_kw.amount}} 元"}}, + {"widgettype": "Text", "options": {"text": "转账码:{{params_kw.tcode}}"}}, + {"widgettype": "Text", "options": {"text": "日期:{{params_kw.curdate}}"}} + ] }, { "widgettype": "Text",