diff --git a/components/form/demo/inline-form.md b/components/form/demo/inline-form.md index 9dcfa48df951f96ef2044ebcd6f98cc643dc8dea..0d6345835e35ccf94ef0bfaea5b65090148bb17d 100644 --- a/components/form/demo/inline-form.md +++ b/components/form/demo/inline-form.md @@ -1,7 +1,9 @@ -# 行内排列的表单 +# 平行排列 - order: 1 +行内排列,常用于登录界面。 + --- ````jsx diff --git a/components/form/demo/input.md b/components/form/demo/input.md index 914ba14d94e5da21acbab4e81234bb40023627f6..31c03f762c8354508ff5d7ef5b730e80b4955085 100644 --- a/components/form/demo/input.md +++ b/components/form/demo/input.md @@ -2,7 +2,7 @@ - order: 0 -我们为 `` 输入框定义了三种尺寸(大、默认、小),具体使用详见 [API](./components/form/#input)。 +我们为 `` 输入框定义了三种尺寸(大、默认、小),具体使用详见 [API](/components/form/#input)。 注意: 在表单里面,我们只使用**大尺寸**, 即高度为 **32px**,作为唯一的尺寸。 diff --git a/components/form/index.md b/components/form/index.md index edff498c60e24aebaa00f8936888ad430fbcc3c1..80c300c6f1b6891a777e64f8085ec6781a4eeeab 100644 --- a/components/form/index.md +++ b/components/form/index.md @@ -14,27 +14,27 @@ 我们为 `form` 提供了以下两种排列方式: - 水平排列:可以实现 `label` 标签和表单控件的水平排列; -- 行内排列:使其表现为 inline-block 级别的控件。 +- 行内排列:使其表现为 `inline-block` 级别的控件。 ## 表单域 表单一定会包含表单域,表单域可以是输入控件,标准表单域,标签,下拉菜单,文本域等。 -这里我们分别封装了表单域 `` 和输入控件 ``。 +这里我们分别封装了表单域 `` 和输入控件 ``。 ```html - - {children} - `; + + {children} +`; ``` ## Input 输入框 ```html - + ``` -## API +## API ### Form @@ -51,7 +51,7 @@ |-----------|------------------------------------------|------------|-------|--------| | label | label 标签的文本 | string | | | | labelCol | label 标签布局,通 `` 组件,设置 `span` `offset` 值,如 `{span: 3, offset: 12}` | object | | | -| wrapperCol | 需要为输入控件设置布局样式时,使用该属性,用法同 labelCol | object | | | +| wrapperCol | 需要为输入控件设置布局样式时,使用该属性,用法同 labelCol | object | | | | help | 提示信息 | string | | | | required | 是否必填 | bool | | false | | validateStatus | 校验状态 | string | 'success' 'warning' 'error' 'validating' | | @@ -80,10 +80,8 @@ Mixin:当表单控件的输入值改变时,更新 formData。 #### Input.Group -```html - +```html + // 样式类名前缀,默认是 ant-input-group,通常您不需要设置。 {children} ```