feat(mobile): my_todos_popup加embed=1整页渲染分支——手机端待办Tab直接整页VBox(不套PopupWindow弹窗壳),弹窗模式(桌面todo_badge)行为不变(2026-09-07手机端适配)

This commit is contained in:
ymq 2026-09-08 14:28:55 +08:00
parent 351de4c3cd
commit a38e6d9141

View File

@ -126,6 +126,21 @@ if not cards:
cards = [{"widgettype": "Text",
"options": {"text": "暂无待办", "cfontsize": 0.9, "color": "#94a3b8", "padding": "16px"}}]
# embed=1手机端「待办」Tab 整页渲染):返回纯 VBox不套 PopupWindow 弹窗壳
_embed = ((params_kw or {}).get('embed') or '').strip()
if _embed == '1':
return {
"widgettype": "VBox",
"options": {"css": "filler", "width": "100%", "height": "100%",
"padding": "0", "gap": "0px"},
"subwidgets": [{
"widgettype": "VScrollPanel",
"options": {"css": "filler", "width": "100%", "height": "100%",
"padding": "12px", "gap": "8px"},
"subwidgets": cards
}]
}
return {
"widgettype": "PopupWindow",
"id": "my_todos_pw",