iptv/wwwroot/newest/channel_show.ui
2025-10-26 14:06:18 +08:00

61 lines
925 B
XML

{% set c = get_channel_by_id(params_kw.id) %}
{% if c %}
{
"widgettype":"HBox",
"options":{
"css": "card",
"width": "100%",
"cheight":5
},
"subwidgets":[
{
"widgettype":"Image",
"options":{
"cwidth":1.5,
"cheight":1.5,
"url":"{{c.logo_url}}",
"default_url":"/imgs/tv.png"
}
},
{
"widgettype":"Text",
"options":{
"text":"{{c.tv_name}}",
"wrap": true,
"halign":"left"
}
}
],
"binds":[
{
"wid":"self",
"event":"click",
"actiontype":"urlwidget",
"target":"PopupWindow",
"popup_options":{
"width":"80%",
"height":"80%",
"title":"{{c.tv_name}}"
},
"options":{
"params":{
"tv_name": "{{c.tv_name}}",
"url":"{{c.url}}",
"id":"{{c.id}}"
},
"method": "POST",
"url":"/play.ui"
}
}
]
}
{% else %}
{
"widgettype": "Text",
"options":{
"i18n":true,
"otext": "channel not exists"
}
}
{% endif %}