{% set roles = get_user_roles(get_user()) %} { "widgettype": "VBox", "options": { "width": "100%", "height": "100%", "padding": "0" }, "subwidgets": [ { "widgettype": "HBox", "options": { "width": "100%", "alignItems": "center", "marginBottom": "24px" }, "subwidgets": [ { "widgettype": "Title2", "options": { "text": "平台业务", "color": "#F1F5F9", "fontWeight": "700" } }, { "widgettype": "Filler" }, { "widgettype": "Text", "options": { "text": "供应商与分销商管理", "fontSize": "14px", "color": "#64748B" } } ] }, { "widgettype": "ResponsableBox", "options": { "gap": "16px", "minWidth": "250px" }, "subwidgets": [ {% if 'reseller.operator' in roles %} { "widgettype": "VBox", "options": { "bgcolor": "#1E293B", "padding": "24px", "borderRadius": "12px", "border": "1px solid #334155", "cursor": "pointer" }, "binds": [ { "wid": "self", "event": "click", "actiontype": "urlwidget", "target": "app.platformbiz_content", "options": { "url": "{{entire_url('/platformbiz/provider')}}" }, "mode": "replace" } ], "subwidgets": [ { "widgettype": "Svg", "options": { "svg": "", "width": "36px", "height": "36px", "marginBottom": "16px" } }, { "widgettype": "Title4", "options": { "text": "供应商管理", "color": "#F1F5F9", "fontWeight": "600", "marginBottom": "8px" } }, { "widgettype": "Text", "options": { "text": "管理AI模型供应商信息与API配置", "fontSize": "14px", "color": "#94A3B8" } } ] }, {% endif %} {% if 'reseller.sale' in roles %} { "widgettype": "VBox", "options": { "bgcolor": "#1E293B", "padding": "24px", "borderRadius": "12px", "border": "1px solid #334155", "cursor": "pointer" }, "binds": [ { "wid": "self", "event": "click", "actiontype": "urlwidget", "target": "app.platformbiz_content", "options": { "url": "{{entire_url('/platformbiz/reseller')}}" }, "mode": "replace" } ], "subwidgets": [ { "widgettype": "Svg", "options": { "svg": "", "width": "36px", "height": "36px", "marginBottom": "16px" } }, { "widgettype": "Title4", "options": { "text": "分销商管理", "color": "#F1F5F9", "fontWeight": "600", "marginBottom": "8px" } }, { "widgettype": "Text", "options": { "text": "管理分销商账户与渠道关系", "fontSize": "14px", "color": "#94A3B8" } } ] } {% endif %} ] }, { "widgettype": "VBox", "id": "platformbiz_content", "options": { "width": "100%", "flex": "1", "marginTop": "20px" } } ] }