Using the loadmore component of mint-UI, you cannot drop down and load data when you load data for the first time in ios. You can only load data after repeatedly switching pages.

body,-sharpapp{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute; left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;  //iostouchloadmore
}

in order to optimize the ios sliding experience, set the touch property. After setting this property, the loadmore component cannot scroll. Commenting on this code will be fine, but the ios sliding experience is not good. Have you ever encountered this problem?

Apr.09,2021

has it been solved? I also encountered the same problem

Menu