dashboard_for_sage/wwwroot/table_top_providers_count.ui

75 lines
2.1 KiB
XML

{% set providers = get_top_providers_by_count(request) %}
{
"widgettype": "VBox",
"options": {
"width": "100%"
},
"subwidgets": [
{% for p in providers %}
{
"widgettype": "HBox",
"options": {
"width": "100%",
"padding": "12px 0",
{% if not loop.first %}
{% endif %}
"alignItems": "center"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "{{loop.index}}",
"width": "30px",
"fontSize": "14px",
"textAlign": "center"
}
},
{
"widgettype": "Text",
"options": {
"text": "{{p.provider_name}}",
"flex": "1",
"fontSize": "14px",
"fontWeight": "500"
}
},
{
"widgettype": "Text",
"options": {
"text": "{{p.cnt}} 笔",
"width": "80px",
"fontSize": "14px",
"fontWeight": "600",
"textAlign": "right"
}
},
{
"widgettype": "Text",
"options": {
"text": "¥{{p.total_amount}}",
"width": "100px",
"color": "#22C55E",
"fontSize": "13px",
"textAlign": "right"
}
}
]
}{% if not loop.last %},{% endif %}
{% endfor %}
{% if not providers %}
{
"widgettype": "Text",
"options": {
"otext": "暂无数据",
"i18n": true,
"fontSize": "14px",
"textAlign": "center",
"padding": "20px 0"
}
}
{% endif %}
]
}