pricing/wwwroot/test_pricing_program.ui
2026-05-06 16:50:46 +08:00

50 lines
864 B
XML

{
"widgettype": "Form",
"options": {
"fields": [
{
"name": "ppid",
"uitype": "hide",
"value": "{{params_kw.id}}"
},
{
"name": "data",
"label": "计费数据(json)",
"uitype": "text",
"required": true
}
],
"width": "100%",
"height": "100%"
},
"binds": [
{
"wid": "self",
"event": "submit",
"actiontype": "urldata",
"target": "show_result",
"options": {
"url": "{{entire_url('./test_pricing_program.dspy')}}",
"params":{}
},
"status_of": {
"ok": {
"widgettype": "Text",
"options":{
"width": "100%",
"text": "${result}"
}
},
"error": {
"widgettype": "Text",
"options":{
"width": "100%",
"color": "red",
"text": "${message}"
}
}
}
}
]
}