bugfix: 修复sku组件留言点击错位问题 (#2722)

This commit is contained in:
naiyiwang 2019-02-12 17:37:43 +08:00 committed by GitHub
parent d30602692c
commit 31f7f5d11d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -1,4 +1,4 @@
import { use } from '../../utils'; import { use, isIOS } from '../../utils';
import Cell from '../../cell'; import Cell from '../../cell';
import CellGroup from '../../cell-group'; import CellGroup from '../../cell-group';
import Field from '../../field'; import Field from '../../field';
@ -118,6 +118,14 @@ export default sfc({
} }
} }
} }
},
handleBlur() {
// https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800
// 修复ios12键盘弹起后点击错位的问题
/* istanbul ignore next */
if (isIOS()) {
window.scrollTo(0, 0);
}
} }
}, },
@ -147,6 +155,7 @@ export default sfc({
required={String(message.required) === '1'} required={String(message.required) === '1'}
placeholder={this.getPlaceholder(message)} placeholder={this.getPlaceholder(message)}
type={this.getType(message)} type={this.getType(message)}
onBlur={this.handleBlur}
/> />
)))} )))}
</CellGroup> </CellGroup>

View File

@ -36,6 +36,11 @@ export function isAndroid(): boolean {
return isServer ? false : /android/.test(navigator.userAgent.toLowerCase()); return isServer ? false : /android/.test(navigator.userAgent.toLowerCase());
} }
export function isIOS(): boolean {
/* istanbul ignore next */
return isServer ? false : /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase());
}
export function range(num: number, min: number, max: number): number { export function range(num: number, min: number, max: number): number {
return Math.min(Math.max(num, min), max); return Math.min(Math.max(num, min), max);
} }