restrict my-today-models and customer-monitor to customer.* role only

This commit is contained in:
yumoqing 2026-06-01 15:25:29 +08:00
parent 3cbb0a4719
commit 69264b6ec6

View File

@ -495,7 +495,68 @@
} }
] ]
} }
{% if 'owner.*' not in roles %} {% if 'customer.*' in roles %}
,{
"widgettype": "VBox",
"options": {
"css": "card",
"width": "100%",
"borderRadius": "12px",
"padding": "20px",
"marginTop": "20px"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"width": "100%",
"alignItems": "center",
"marginBottom": "16px"
},
"subwidgets": [
{
"widgettype": "Title4",
"options": {
"fontWeight": "600",
"otext": "我的今日模型使用",
"i18n": true
}
},
{
"widgettype": "Filler"
},
{
"widgettype": "Button",
"options": {
"label": "刷新",
"border": "none",
"borderRadius": "6px",
"padding": "4px 12px",
"fontSize": "12px"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "method",
"target": "-@ChartBar",
"method": "render_urldata",
"params": {}
}
]
}
]
},
{
"widgettype": "urlwidget",
"options": {
"url": "{{entire_url('user_today_models_chart.ui')}}"
}
}
]
}
{% endif %}
{% if 'owner.*' not in roles and 'customer.*' in roles %}
,{ ,{
"widgettype": "VBox", "widgettype": "VBox",
"options": { "options": {