{ "widgettype": "VBox", "options": { "width": "100%", "padding": "16px" }, "subwidgets": [ { "widgettype": "Text", "options": { "text": "从供应商同步素材组合", "fontSize": "20px", "fontWeight": "bold", "marginBottom": "16px" } }, { "widgettype": "VScrollPanel", "options": { "height": "300px" }, "subwidgets": [ { "widgettype": "VBox", "options": { "padding": "8px" }, "subwidgets": [ { "widgettype": "Form", "id": "sync_form", "options": { "submit_url": "{{entire_url('api/sync_from_vendor.dspy')}}", "fields": [ { "uitype": "code", "name": "vendor", "label": "供应商", "dataurl": "{{entire_url('api/get_vendor_list.dspy')}}", "data_field": "value", "text_field": "text", "required": true }, { "uitype": "str", "name": "project_name", "label": "项目名", "placeholder": "default" } ] }, "binds": [ { "wid": "self", "event": "submited", "actiontype": "script", "target": "self", "script": "await bricks.show_resp_message_or_error(event.params)" } ] } ] } ] } ] }