amis2/examples/components/Page/Form.jsx
Akikonata 0cbb2ea0f1
Feat condition builder (#3392)
* 处理某些特殊情况下会传入空字符串导致无法识别值的问题

* 修复空字符串不能识别导致出错的问题

* select 支持不换行模式

* 解决长列表出现双滚动条的问题

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* 大赛广告

* List 不再下发"-" 作为空值

* condition-builder 支持简单模式

* condition-builder 支持简单模式

Co-authored-by: panzheng <panzheng@baidu.com>
2022-01-13 11:28:30 +08:00

25 lines
442 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'
}
]
}
]
};