{ "widgettype": "VBox", "options": { "width": "100%", "padding": "16px" }, "subwidgets": [ { "widgettype": "Title4", "options": { "text": "上传素材", "fontWeight": "600", "marginBottom": "16px" } }, { "widgettype": "VScrollPanel", "options": { "height": "600px" }, "subwidgets": [ { "widgettype": "VBox", "options": { "padding": "16px", "spacing": 12 }, "subwidgets": [ { "widgettype": "Form", "id": "upload_form", "options": { "submit_url": "{{entire_url('api/submit_upload.dspy')}}", "fields": [ { "uitype": "code", "name": "vendor", "label": "供应商", "dataurl": "{{entire_url('api/get_vendor_list.dspy')}}", "data_field": "value", "text_field": "text", "required": true }, { "uitype": "code", "name": "vendor_group_id", "label": "认证组合", "dataurl": "{{entire_url('api/get_org_groups.dspy')}}", "data_field": "value", "text_field": "text", "required": true }, { "uitype": "file", "name": "source_url", "label": "素材文件", "accept": "image/*,audio/*,video/*", "required": true }, { "uitype": "code", "name": "asset_type", "label": "素材类型", "dataurl": "{{entire_url('api/get_asset_type_list.dspy')}}", "data_field": "value", "text_field": "text" }, { "uitype": "str", "name": "name", "label": "素材名称", "placeholder": "可选,默认使用URL最后一部分" } ] }, "binds": [ { "wid": "self", "event": "submited", "actiontype": "script", "script": "await bricks.show_resp_message_or_error(event.params)" } ] } ] } ] } ] }