mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:48:55 +08:00
23 lines
345 B
JavaScript
23 lines
345 B
JavaScript
export default {
|
|
type: 'page',
|
|
title: '表单页面',
|
|
body: {
|
|
type: 'form',
|
|
mode: 'horizontal',
|
|
api: '/api/mock2/form/saveForm',
|
|
controls: [
|
|
{
|
|
label: 'Name',
|
|
type: 'text',
|
|
name: 'name'
|
|
},
|
|
|
|
{
|
|
label: 'Email',
|
|
type: 'email',
|
|
name: 'email'
|
|
}
|
|
]
|
|
}
|
|
};
|