feat(Form): add scrollToField method (#5680)

This commit is contained in:
陈嘉涵 2020-02-20 16:32:14 +08:00
parent 871398b223
commit 3f14795387
4 changed files with 26 additions and 1 deletions

View File

@ -438,6 +438,7 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get Form instance and call instance
| submit | Submit form | - | - | | submit | Submit form | - | - |
| validate | Validate form | *name?: string* | *Promise* | | validate | Validate form | *name?: string* | *Promise* |
| resetValidation | Reset validation | *name?: string* | - | | resetValidation | Reset validation | *name?: string* | - |
| scrollToField `v2.5.2` | Scroll to field | *name: string* | - |
### Slots ### Slots

View File

@ -474,6 +474,7 @@ export default {
| submit | 提交表单,与点击提交按钮的效果等价 | - | - | | submit | 提交表单,与点击提交按钮的效果等价 | - | - |
| validate | 验证表单,支持传入`name`来验证单个表单项 | *name?: string* | *Promise* | | validate | 验证表单,支持传入`name`来验证单个表单项 | *name?: string* | *Promise* |
| resetValidation | 重置表单项的验证提示,支持传入`name`来重置单个表单项 | *name?: string* | - | | resetValidation | 重置表单项的验证提示,支持传入`name`来重置单个表单项 | *name?: string* | - |
| scrollToField `v2.5.2` | 滚动到对应表单项的位置 | *name: string* | - |
### Slots ### Slots

View File

@ -106,6 +106,15 @@ export default createComponent({
}); });
}, },
// @exposed-api
scrollToField(name) {
this.fields.forEach(item => {
if (item.name === name) {
item.$el.scrollIntoView();
}
});
},
getValues() { getValues() {
return this.fields.reduce((form, field) => { return this.fields.reduce((form, field) => {
form[field.name] = field.formValue; form[field.name] = field.formValue;

View File

@ -1,4 +1,4 @@
import { later } from '../../../test'; import { later, mockScrollIntoView } from '../../../test';
import { mountForm, mountSimpleRulesForm, getSimpleRules } from './shared'; import { mountForm, mountSimpleRulesForm, getSimpleRules } from './shared';
test('submit method', async () => { test('submit method', async () => {
@ -96,3 +96,17 @@ test('resetValidation method - reset one field', done => {
}, },
}); });
}); });
test('scrollToField method', done => {
const fn = mockScrollIntoView();
mountSimpleRulesForm({
mounted() {
this.$refs.form.scrollToField('unknown');
expect(fn).toHaveBeenCalledTimes(0);
this.$refs.form.scrollToField('A');
expect(fn).toHaveBeenCalledTimes(1);
done();
},
});
});