pipeline-task/wwwroot/task_submit.ui

48 lines
2.0 KiB
XML

{
"widgettype": "VBox",
"options": {"width": "100%", "padding": "16px"},
"subwidgets": [
{
"widgettype": "HBox",
"options": {"width": "100%", "marginBottom": "16px", "alignItems": "center"},
"subwidgets": [
{
"widgettype": "Button",
"options": {"label": "返回列表"},
"binds": [{
"wid": "self", "event": "click", "actiontype": "urlwidget",
"target": "-pipeline_task_content",
"options": {"url": "{{entire_url('task_list.ui')}}"},
"mode": "replace"
}]
},
{"widgettype": "Title", "options": {"text": "提交新任务", "cfontsize": 20}}
]
},
{
"widgettype": "VBox",
"options": {"width": "600px", "bgcolor": "var(--card-bg)", "padding": "24px"},
"subwidgets": [
{
"widgettype": "Form",
"options": {
"name": "submit_form",
"submit_url": "{{entire_url('api/task_submit.dspy')}}",
"fields": [
{"name": "pipeline_id", "label": "产线ID", "uitype": "str"},
{"name": "title", "label": "任务标题", "uitype": "str"},
{"name": "mode", "label": "模式(可选)", "uitype": "str"},
{"name": "input_text", "label": "输入文本(可选)", "uitype": "text"}
]
},
"binds": [{
"wid": "self", "event": "submit", "actiontype": "urlwidget",
"target": "self",
"options": {"method": "POST", "url": "{{entire_url('api/task_submit.dspy')}}"}
}]
}
]
}
]
}