IOS端input无法输入

原因是mui框架的有个css样式
*{
-webkit-user-select: none;
}
其作用是禁掉用户可以选中页面中的内容。

添加以下style样式即可
input{
-webkit-user-select: auto;
}