From e544b9ffe1bd80b9fa1caf1f19819096a46e7287 Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 8 Aug 2021 17:38:42 +0800 Subject: [PATCH] fix(Field): textarea scroll to top after resizing (#9206) --- src/field/utils.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/field/utils.ts b/src/field/utils.ts index 02b84cd3e..6db7f8710 100644 --- a/src/field/utils.ts +++ b/src/field/utils.ts @@ -1,5 +1,12 @@ import { HTMLAttributes, InputHTMLAttributes } from 'vue'; -import { trigger, isObject, isPromise, isFunction } from '../utils'; +import { + trigger, + isObject, + isPromise, + isFunction, + getRootScrollTop, + setRootScrollTop, +} from '../utils'; import type { FieldRule, FieldType, FieldAutosizeConfig } from './types'; function isEmptyValue(value: unknown) { @@ -59,6 +66,7 @@ export function resizeTextarea( input: HTMLInputElement, autosize: true | FieldAutosizeConfig ) { + const scrollTop = getRootScrollTop(); input.style.height = 'auto'; let height = input.scrollHeight; @@ -74,6 +82,8 @@ export function resizeTextarea( if (height) { input.style.height = `${height}px`; + // https://github.com/youzan/vant/issues/9178 + setRootScrollTop(scrollTop); } }