{% set trend = get_usage_trend(request) %} { "widgettype": "VBox", "options": { "css": "stat-card", "padding": "14px", "borderRadius": "12px", "flex": "1", "minHeight": "90px", "cursor": "pointer", "borderLeft": "4px solid {% if trend.trend == 'up' %}#22c55e{% elif trend.trend == 'down' %}#ef4444{% else %}#3b82f6{% endif %}" }, "subwidgets": [ { "widgettype": "HBox", "options": { "alignItems": "center", "marginBottom": "12px" }, "subwidgets": [ { "widgettype": "Svg", "options": { "svg": "", "width": "24px", "height": "24px", "color": "#3b82f6" } }, { "widgettype": "Filler" } ] }, { "widgettype": "Text", "options": { "css": "stat-value", "text": "{{trend.value}}", "fontSize": "32px", "fontWeight": "700", "lineHeight": "1.1" } }, { "widgettype": "HBox", "options": { "alignItems": "center", "marginTop": "4px" }, "subwidgets": [ { "widgettype": "Text", "options": { "css": "stat-label", "fontSize": "14px", "otext": "今日调用笔数", "i18n": true } }, { "widgettype": "Filler" }, { "widgettype": "HBox", "options": { "alignItems": "center", "gap": "4px" }, "subwidgets": [ { "widgettype": "Svg", "options": { "svg": "{% if trend.trend == 'up' %}{% elif trend.trend == 'down' %}{% else %}{% endif %}", "width": "16px", "height": "16px" } }, { "widgettype": "Text", "options": { "text": "{{trend.percentage|round(1)}}%{% if trend.trend == 'up' %} ↑{% elif trend.trend == 'down' %} ↓{% endif %}", "fontSize": "12px", "fontWeight": "600", "color": "{% if trend.trend == 'up' %}#22c55e{% elif trend.trend == 'down' %}#ef4444{% else %}#94a3b8{% endif %}" } } ] } ] } ] }