From c96da0af11e3eee490e949b2ff92be94bf6c5c4f Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 15 Jul 2026 18:16:57 +0800 Subject: [PATCH] feat(transfer): add transfer_info.ui page for bank transfer info --- wwwroot/transfer_info.ui | 71 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 wwwroot/transfer_info.ui diff --git a/wwwroot/transfer_info.ui b/wwwroot/transfer_info.ui new file mode 100644 index 0000000..0cfbf2b --- /dev/null +++ b/wwwroot/transfer_info.ui @@ -0,0 +1,71 @@ +{ + "widgettype": "VBox", + "options": { + "width": "100%", + "height": "100%", + "padding": "20px" + }, + "subwidgets": [ + { + "widgettype": "Title3", + "options": { + "text": "线下转账充值", + "color": "var(--sage-text-primary)" + } + }, + { + "widgettype": "Text", + "options": { + "text": "请向以下账户转账,并在附言中填写转账码:" + } + }, + { + "widgettype": "VBox", + "options": { + "css": "card", + "padding": "16px", + "width": "100%" + }, + "subwidgets": [ + { + "widgettype": "HBox", + "options": {}, + "subwidgets": [ + {"widgettype": "Text", "options": {"text": "收款账号", "cwidth": 8}}, + {"widgettype": "Text", "options": {"text": "{{params_kw.account_no}}", "cwidth": 16}} + ] + }, + { + "widgettype": "HBox", + "options": {}, + "subwidgets": [ + {"widgettype": "Text", "options": {"text": "转账金额", "cwidth": 8}}, + {"widgettype": "Text", "options": {"text": "{{params_kw.amount}} 元", "cwidth": 16}} + ] + }, + { + "widgettype": "HBox", + "options": {}, + "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", + "options": { + "text": "转账完成后,系统将自动匹配转账码并完成充值。如有疑问请联系客服。" + } + } + ] +}