返回所有模板
场景属性与预设集成
适用场景身份材料、资质证明、准入审核资料收集
分栏海报Split 双栏 (invoice-stack)
OCR 识别模板id_card
推送集成预设generic
内联高保真插画与交互预览
填写表单
1 / 6
身份资质收集表
适合收集基础信息、资质图片和授权确认。
申请人姓名是?*
💡 上方为实时可填写的表单沙盒预览,点击按钮可模拟多步跳转
模板包含字段
| 字段标签 | 内部标识 (Key) | 输入类型 | 必填 |
|---|---|---|---|
| 申请人姓名是? | applicant_name | text | ✓ 是 |
| 联系方式是? | contact | text | ✓ 是 |
| 请上传身份或资质证明图片。 | qualification_image | image | ✓ 是 |
| 本次申请用途是? | application_purpose | select | ✓ 是 |
| 是否确认已获得提交和处理授权? | consent | radio | ✓ 是 |
| 补充说明 | reviewer_note | textarea | -- |
30秒部署指南
1. 一键点击上方「立即使用此模板」按钮。
2. 在 AI 协同舱中输入指令,可微调问题文案或增减字段。
3. 保存场景,在控制台中配置 Webhook 或分享链接即可上线。
智能数据流特性
高转化双栏插画
该模板默认采用 Split 双栏版式与动态高保真插画,为填写用户提供专注且高级的视觉体验。
预设 OCR id_card 图像提取
配合平台自带的图像识别引擎,可自动将用户上传的图片文件(发票、账单等)提取为结构化字段。
内置 generic 推送集成
表单提交后,数据可配置重试策略并自动推送到指定的 Webhook,支持飞书、钉钉、企业微信机器人格式。
表单配置 JSON Schema
{
"layout": "single",
"aspects": {
"welcomeImage": "invoice-stack",
"themeVariant": "default",
"preferredDevice": "desktop"
},
"fields": [
{
"key": "applicant_name",
"label": "申请人姓名是?",
"type": "text",
"required": true,
"placeholder": "请输入真实姓名"
},
{
"key": "contact",
"label": "联系方式是?",
"type": "text",
"required": true,
"placeholder": "手机号或邮箱"
},
{
"key": "qualification_image",
"label": "请上传身份或资质证明图片。",
"type": "image",
"required": true,
"help_text": "请确保图片清晰,敏感信息按业务要求处理。"
},
{
"key": "application_purpose",
"label": "本次申请用途是?",
"type": "select",
"required": true,
"options": [
{
"label": "会员认证",
"value": "membership"
},
{
"label": "活动准入",
"value": "event_access"
},
{
"label": "身份核验",
"value": "verification"
},
{
"label": "其他用途",
"value": "other"
}
]
},
{
"key": "consent",
"label": "是否确认已获得提交和处理授权?",
"type": "radio",
"required": true,
"options": [
{
"label": "确认已获授权",
"value": "yes"
},
{
"label": "暂不确认",
"value": "no"
}
]
},
{
"key": "reviewer_note",
"label": "补充说明",
"type": "textarea",
"required": false,
"placeholder": "如有特殊情况,可在这里说明"
}
]
}