rbac/wwwroot/qr_scan.ui
yumoqing acdabe4c33 扫码结果改为弹新窗口(PopupWindow)展示,不再替换当前页面
root.page_center → PopupWindow,扫码后弹出 85% 新窗口打开链接内容
2026-07-06 13:47:39 +08:00

28 lines
700 B
XML

{
"widgettype": "QRCodeScan",
"options": {},
"binds": [
{
"wid": "self",
"event": "recognized",
"actiontype": "urlwidget",
"target": "PopupWindow",
"popup_options": {
"title": "扫码结果",
"dismiss_events": ["cancel"],
"height": "85%",
"width": "85%"
},
"options": {
"url": "${text}$"
}
},
{
"wid": "self",
"event": "recognized",
"actiontype": "script",
"target": "-@PopupWindow",
"script": "this.dismiss()"
}
]
}