feat(Form): scrollToField can scroll to bottom (#6335)

This commit is contained in:
neverland 2020-05-21 19:15:50 +08:00 committed by GitHub
parent 6630816742
commit 96ef2557c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View File

@ -457,12 +457,12 @@ export default {
Use [ref](https://vuejs.org/v2/api/#ref) to get Form instance and call instance methods
| Name | Description | Attribute | Return value |
| ---------------------- | ---------------- | --------------- | ------------ |
| submit | Submit form | - | - |
| validate | Validate form | _name?: string_ | _Promise_ |
| resetValidation | Reset validation | _name?: string_ | - |
| scrollToField `v2.5.2` | Scroll to field | _name: string_ | - |
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |
| submit | Submit form | - | - |
| validate | Validate form | _name?: string_ | _Promise_ |
| resetValidation | Reset validation | _name?: string_ | - |
| scrollToField `v2.8.2` | Scroll to field | _name: string, alignToTop: boolean_ | - |
### Slots

View File

@ -501,7 +501,7 @@ export default {
| submit | 提交表单,与点击提交按钮的效果等价 | - | - |
| validate | 验证表单,支持传入`name`来验证单个表单项 | _name?: string_ | _Promise_ |
| resetValidation | 重置表单项的验证提示,支持传入`name`来重置单个表单项 | _name?: string_ | - |
| scrollToField `v2.5.2` | 滚动到对应表单项的位置 | _name: string_ | - |
| scrollToField `v2.8.2` | 滚动到对应表单项的位置,默认滚动到顶部,第二个参数传 false 可滚动至底部 | _name: string, alignToTop: boolean_ | - |
### Slots

View File

@ -119,10 +119,10 @@ export default createComponent({
},
// @exposed-api
scrollToField(name) {
scrollToField(name, options) {
this.fields.forEach((item) => {
if (item.name === name) {
item.$el.scrollIntoView();
item.$el.scrollIntoView(options);
}
});
},

2
types/form.d.ts vendored
View File

@ -7,5 +7,5 @@ export class Form extends VanComponent {
resetValidation(name?: string): void;
scrollToField(name: string): void;
scrollToField(name: string, options?: boolean | ScrollIntoViewOptions): void;
}