{ "widgettype": "VBox", "id": "model_pricing_page", "options": { "width": "100%", "height": "100%", "padding": "20px", "gap": "16px" }, "subwidgets": [ { "widgettype": "Title3", "options": { "text": "模型定价查询" } }, { "widgettype": "InlineForm", "id": "pricing_form", "options": { "fields": [ { "name": "llmid", "label": "选择模型", "uitype": "code", "required": true, "dataurl": "{{entire_url('/llmage/api/get_search_model.dspy')}}", "valueField": "value", "textField": "text" } ], "submit_label": "查询" }, "binds": [ { "wid": "self", "event": "submit", "actiontype": "urlwidget", "target": "pricing_result", "mode": "replace", "options": { "url": "{{entire_url('/llmage/model_pricing.dspy')}}", "method": "GET", "params": {} } } ] }, { "widgettype": "VScrollPanel", "id": "pricing_result", "options": { "css": "filler", "padding": "8px" } } ] }