pricing/wwwroot/test_pricing_program.ui
Hermes Agent edee247a11 fix: test_pricing结果直接返回完整控件JSON
- dspy: 直接return VScrollPanel+Text子控件的完整JSON,不再用status/data包装
- ui: actiontype从urldata改为bricks,直接实例化返回的控件
- 解决status_of模板${items}数组替换不支持的问题
2026-06-18 16:13:52 +08:00

53 lines
779 B
XML

{
"widgettype": "VScrollPanel",
"options": {
"width": "100%",
"height": "100%"
},
"subwidgets":[
{
"widgettype": "Form",
"id": "input_form",
"options": {
"fields": [
{
"name": "ppid",
"uitype": "hide",
"value": "{{params_kw.id}}"
},
{
"name": "data",
"label": "计费数据(json)",
"uitype": "text",
"rows": 6,
"cols": 60,
"required": true
}
],
"width": "100%",
"height": "50%"
}
},
{
"widgettype": "VScrollPanel",
"id": "result",
"options": {
"height": "50%",
"width": "100%"
}
}
],
"binds": [
{
"wid": "input_form",
"event": "submit",
"actiontype": "bricks",
"target": "result",
"options": {
"url": "{{entire_url('./test_pricing_program.dspy')}}",
"params":{}
}
}
]
}