ui: transfer_info display as flat text rows instead of read-only Form

This commit is contained in:
yumoqing 2026-07-17 10:49:52 +08:00
parent 68ca493840
commit df6aa60006

View File

@ -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",