mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
bugfix: 修复sku组件留言点击错位问题 (#2722)
This commit is contained in:
parent
d30602692c
commit
31f7f5d11d
@ -1,4 +1,4 @@
|
||||
import { use } from '../../utils';
|
||||
import { use, isIOS } from '../../utils';
|
||||
import Cell from '../../cell';
|
||||
import CellGroup from '../../cell-group';
|
||||
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'}
|
||||
placeholder={this.getPlaceholder(message)}
|
||||
type={this.getType(message)}
|
||||
onBlur={this.handleBlur}
|
||||
/>
|
||||
)))}
|
||||
</CellGroup>
|
||||
|
@ -36,6 +36,11 @@ export function isAndroid(): boolean {
|
||||
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 {
|
||||
return Math.min(Math.max(num, min), max);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user