mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 21:08:55 +08:00
0f6d72a8ab
* fix: 1.2.x 修复 File disabled 失效问题 * feat: 单个表单项支持后端校验 * update snapshot * fix snapshot * fix * update error * 补一下用例 * fix test
26 lines
443 B
JavaScript
26 lines
443 B
JavaScript
export default {
|
|
type: 'page',
|
|
title: '表单页面',
|
|
body: [
|
|
{
|
|
type: 'form',
|
|
mode: 'horizontal',
|
|
api: '/api/mock2/form/saveForm',
|
|
body: [
|
|
{
|
|
label: 'Name',
|
|
type: 'input-text',
|
|
name: 'name'
|
|
},
|
|
|
|
{
|
|
label: 'Email',
|
|
type: 'input-email',
|
|
placeholder: '请输入邮箱地址',
|
|
name: 'email'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|