{ "widgettype": "VBox", "options": { "width": "100%", "padding": "16px" }, "subwidgets": [ { "widgettype": "HBox", "options": { "width": "100%", "alignItems": "center", "marginBottom": "16px" }, "subwidgets": [ { "widgettype": "Title4", "options": { "text": "创建真人认证", "fontWeight": "600" } }, { "widgettype": "Filler" }, { "widgettype": "Button", "options": { "label": "返回首页" }, "binds": [ { "wid": "self", "event": "click", "actiontype": "urlwidget", "target": "app.rl_content", "options": { "url": "{{entire_url('index.ui')}}" }, "mode": "replace" } ] } ] }, { "widgettype": "VScrollPanel", "options": { "height": "500px" }, "subwidgets": [ { "widgettype": "VBox", "options": { "padding": "16px", "spacing": 12 }, "subwidgets": [ { "widgettype": "Form", "id": "validate_form", "options": { "submit_url": "{{entire_url('api/rl_asset_group_create.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": "callback_url", "label": "回调URL", "placeholder": "https://your-domain.com/reallife_asset/api/rl_callback.dspy", "required": true }, { "uitype": "str", "name": "project_name", "label": "项目名", "placeholder": "default", "value": "default" } ] } }, { "widgettype": "HBox", "options": { "gap": "12px", "marginTop": "16px" }, "subwidgets": [ { "widgettype": "Button", "options": { "label": "提交" }, "binds": [ { "wid": "self", "event": "click", "actiontype": "script", "target": "self", "script": "var f=bricks.getWidgetById('validate_form',bricks.app);if(f)f.submit()" } ] }, { "widgettype": "Button", "options": { "label": "重置" }, "binds": [ { "wid": "self", "event": "click", "actiontype": "script", "target": "self", "script": "var f=bricks.getWidgetById('validate_form',bricks.app);if(f)f.reset()" } ] } ] } ] } ] } ] }