pricing/wwwroot/test_pricing_program.ui
Hermes Agent 972400e382 feat: test_pricing_program结果每条记录单独显示
- dspy: 每条结果json.dumps(r, ensure_ascii=False)后以\n\n分隔
- ui: 结果区改为VScrollPanel,支持长结果滚动
2026-06-18 16:03:43 +08:00

70 lines
1.1 KiB
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": "urldata",
"target": "result",
"options": {
"url": "{{entire_url('./test_pricing_program.dspy')}}",
"params":{}
},
"status_of": {
"ok": {
"widgettype": "Text",
"options":{
"width": "100%",
"text": "${items}"
}
},
"error": {
"widgettype": "Text",
"options":{
"width": "100%",
"color": "red",
"text": "${message}"
}
}
}
}
]
}