feat: 添加线下转账充值信息展示页 transfer_info.ui

This commit is contained in:
yumoqing 2026-07-16 15:31:38 +08:00
parent 067510df65
commit 4ba232805b

View File

@ -2,90 +2,63 @@
"widgettype": "VBox", "widgettype": "VBox",
"options": { "options": {
"width": "100%", "width": "100%",
"height": "100%", "children": [
"padding": "20px" {
}, "widgettype": "Title",
"subwidgets": [ "options": {
{ "text": "线下转账充值"
"widgettype": "Title3", }
"options": {
"text": "线下转账充值",
"color": "var(--sage-text-primary)"
}
},
{
"widgettype": "Text",
"options": {
"text": "请向以下账户转账,并在附言中填写转账码:"
}
},
{
"widgettype": "VBox",
"options": {
"css": "card",
"padding": "16px",
"width": "100%"
}, },
"subwidgets": [ {
{% if params_kw.bank_name %} "widgettype": "Text",
{ "options": {
"widgettype": "HBox", "text": "请向以下账户转账,并在附言中填写转账码:"
"options": {}, }
"subwidgets": [ },
{"widgettype": "Text", "options": {"text": "收款银行", "cwidth": 8}}, {
{"widgettype": "Text", "options": {"text": {{json.dumps(params_kw.bank_name)}}, "cwidth": 16, "cfontsize": 1.1}} "widgettype": "Form",
] "options": {
}, "readonly": true,
{% endif %} "fields": [
{% if params_kw.bank_branch %} {
{ "name": "bank_name",
"widgettype": "HBox", "label": "开户银行",
"options": {}, "uitype": "str"
"subwidgets": [ },
{"widgettype": "Text", "options": {"text": "开户行", "cwidth": 8}}, {
{"widgettype": "Text", "options": {"text": {{json.dumps(params_kw.bank_branch)}}, "cwidth": 16, "cfontsize": 1.1}} "name": "bank_branch",
] "label": "开户支行",
}, "uitype": "str"
{% endif %} },
{ {
"widgettype": "HBox", "name": "account_no",
"options": {}, "label": "收款账号",
"subwidgets": [ "uitype": "str"
{"widgettype": "Text", "options": {"text": "收款账号", "cwidth": 8}}, },
{"widgettype": "Text", "options": {"text": "{{params_kw.account_no}}", "cwidth": 16}} {
] "name": "amount",
}, "label": "转账金额",
{ "uitype": "str"
"widgettype": "HBox", },
"options": {}, {
"subwidgets": [ "name": "tcode",
{"widgettype": "Text", "options": {"text": "转账金额", "cwidth": 8}}, "label": "转账码",
{"widgettype": "Text", "options": {"text": "{{params_kw.amount}} 元", "cwidth": 16}} "uitype": "str"
] },
}, {
{ "name": "curdate",
"widgettype": "HBox", "label": "日期",
"options": {}, "uitype": "str"
"subwidgets": [ }
{"widgettype": "Text", "options": {"text": "转账码", "cwidth": 8}},
{"widgettype": "Text", "options": {"text": "{{params_kw.tcode}}", "cwidth": 16, "cfontsize": 1.5}}
]
},
{
"widgettype": "HBox",
"options": {},
"subwidgets": [
{"widgettype": "Text", "options": {"text": "日期", "cwidth": 8}},
{"widgettype": "Text", "options": {"text": "{{params_kw.curdate}}", "cwidth": 16}}
] ]
} }
] },
}, {
{ "widgettype": "Text",
"widgettype": "Text", "options": {
"options": { "text": "转账完成后,系统将自动匹配转账码并完成充值。如有疑问请联系客服。"
"text": "转账完成后,系统将自动匹配转账码并完成充值。如有疑问请联系客服。" }
} }
} ]
] }
} }