ant-design / ant-design-mobile

Essential UI blocks for building mobile web apps.
https://mobile.ant.design
MIT License
11.67k stars 2.41k forks source link

CalendarPicker 组件无法滚动 #6763

Open diyiduanfa opened 1 month ago

diyiduanfa commented 1 month ago

Version of antd-mobile

5.37.1

Operating system and its version

iOS

Browser and its version

ios14.4

Sandbox to reproduce

CalendarPicker

What happened?

ios14.4版本中,CalendarPicker 组件打开后无法滚动,点击之后才能滚动

Relevant log output

CalendarPicker组件兼容性问题
zombieJ commented 1 month ago

IOS 的 BUG,临时解决方案覆盖为以下样式:

.adm-popup-body {
  pointer-events: unset;
}
Layouwen commented 2 weeks ago

IOS 的 BUG,临时解决方案覆盖为以下样式:

.adm-popup-body {
  pointer-events: unset;
}

这个样式默认加上会影响其他端使用么