mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 04:59:17 +08:00
24 lines
463 B
React
24 lines
463 B
React
|
export default {
|
||
|
type: 'page',
|
||
|
title: '表单页面',
|
||
|
body: {
|
||
|
type: 'form',
|
||
|
mode: 'horizontal',
|
||
|
title: '',
|
||
|
api: '/api/mock2/form/saveForm',
|
||
|
controls: [
|
||
|
{
|
||
|
label: 'Name',
|
||
|
type: 'text',
|
||
|
name: 'name'
|
||
|
},
|
||
|
|
||
|
{
|
||
|
label: 'Email',
|
||
|
type: 'email',
|
||
|
name: 'email'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|