feat(Form): add label-width prop

This commit is contained in:
陈嘉涵 2020-02-13 16:28:58 +08:00
parent 7a9d1d7ab6
commit 55fa975141
4 changed files with 7 additions and 3 deletions

View File

@ -109,7 +109,8 @@ export default createComponent({
}, },
labelStyle() { labelStyle() {
const { labelWidth } = this; const labelWidth = this.getProp('labelWidth');
if (labelWidth) { if (labelWidth) {
return { width: addUnit(labelWidth) }; return { width: addUnit(labelWidth) };
} }

View File

@ -405,8 +405,9 @@ export default {
| Attribute | Description | Type | Default | | Attribute | Description | Type | Default |
|------|------|------|------| |------|------|------|------|
| label-align | Label text align, can be set to `center` `right` | *string* | `left` | | label-width | Field label width | *number \| string* | `90px` |
| input-align | Input text align, can be set to `center` `right` | *string* | `left` | | label-align | Field label text align, can be set to `center` `right` | *string* | `left` |
| input-align | Field input text align, can be set to `center` `right` | *string* | `left` |
| validate-first | Whether to stop the validation when a rule fails | *boolean* | `false` | | validate-first | Whether to stop the validation when a rule fails | *boolean* | `false` |
### Events ### Events

View File

@ -437,6 +437,7 @@ export default {
| 参数 | 说明 | 类型 | 默认值 | | 参数 | 说明 | 类型 | 默认值 |
|------|------|------|------| |------|------|------|------|
| label-width | 表单项文本宽度,默认单位为`px` | *number \| string* | `90px` |
| label-align | 表单项文本对齐方式,可选值为 `center` `right` | *string* | `left` | | label-align | 表单项文本对齐方式,可选值为 `center` `right` | *string* | `left` |
| input-align | 输入框内容对齐方式,可选值为 `center` `right` | *string* | `left` | | input-align | 输入框内容对齐方式,可选值为 `center` `right` | *string* | `left` |
| validate-first | 是否在某一项校验不通过时停止校验 | *boolean* | `false` | | validate-first | 是否在某一项校验不通过时停止校验 | *boolean* | `false` |

View File

@ -4,6 +4,7 @@ const [createComponent, bem] = createNamespace('form');
export default createComponent({ export default createComponent({
props: { props: {
labelWidth: [Number, String],
labelAlign: String, labelAlign: String,
inputAlign: String, inputAlign: String,
validateFirst: Boolean, validateFirst: Boolean,