sage_datamart/wwwroot/sect_top_users.ui

18 lines
1.2 KiB
XML

{% set data = j2_top_users_data(request) %}
{% if data %}{% set maxv = namespace(v=0) %}{% for r in data %}{% set amt = r.get("total_amount",0)|float %}{% if amt > maxv.v %}{% set maxv.v = amt %}{% endif %}{% endfor %}{% endif %}
{
"widgettype": "VBox",
"options": {"width": "100%"},
"subwidgets": [
{% for r in data %}
{% set name = r.get("user_name","") %}{% set val = r.get("total_amount",0)|float %}{% set pct = (val/maxv.v*100)|int if maxv.v else 0 %}
{"widgettype":"HBox","options":{"width":"100%","marginBottom":"4px"},"subwidgets":[
{"widgettype":"Text","options":{"text":{{json.dumps(name,ensure_ascii=False)}},"width":"32%","fontSize":"11px"}},
{"widgettype":"Text","options":{"text":{{json.dumps('¥' + ('%.2f'%val),ensure_ascii=False)}},"width":"12%","fontSize":"11px","textAlign":"right","color":"var(--sage-text-secondary)"}},
{"widgettype":"VBox","options":{"width":"56%","height":"14px","bgcolor":"var(--sage-bg-tertiary)","borderRadius":"3px"},"subwidgets":[
{"widgettype":"VBox","options":{"width":"{{pct}}%","minWidth":"2px","height":"14px","bgcolor":"#8b5cf6","borderRadius":"3px"}}
]}
]}{% if not loop.last %},{% endif %}{% endfor %}
]
}