{ "widgettype": "VBox", "options": { "width": "100%", "padding": "16px" }, "subwidgets": [ { "widgettype": "Text", "options": { "text": "创建真人认证", "fontSize": "20px", "fontWeight": "bold", "marginBottom": "16px" } }, { "widgettype": "Form", "id": "validate_form", "options": { "url": "{{entire_url('api/rl_asset_group_create.dspy')}}", "method": "POST", "fields": [ { "name": "vendor", "label": "供应商", "type": "select", "options": [ { "value": "volcengine", "text": "火山方舟" }, { "value": "kling", "text": "可灵" } ] }, { "name": "callback_url", "label": "回调URL", "type": "text", "placeholder": "https://your-domain.com/callback" }, { "name": "project_name", "label": "项目名", "type": "text", "default": "default" }, { "name": "apikey", "label": "Access Key", "type": "text" }, { "name": "secretkey", "label": "Secret Key", "type": "password" } ], "submit_label": "生成认证链接" } } ] }