使用[uView]Sticky 吸顶 ,距离顶部有个44px的距离
原因:
把pages.json文件中的 “[navigationStyle]设置为"custom”,
解决,使用css sticky
/* 使用CSS的sticky定位 */
position: -webkit-sticky;
position: sticky;
top: 0;
/* 设置距顶部的距离 */
z-index: 1000;
/* 确保sticky元素在顶层 */