1***@163.com
1***@163.com
  • 发布:2025-06-26 09:55
  • 更新:2025-06-26 10:40
  • 阅读:107

解决 nvue 页面 uni-popup 不居中的问题

分类:nvue

临时解决方案:

<uni-popup type="center">    
  <view class='wrapper'>    
    【这里放弹窗内容】    
  </view>    
</uni-popup>
.wrapper {    
  position: fixed;    
  top: 0;    
  right: 0;    
  bottom: 0;    
  left: 0;    
  z-index: 999999999;    

  justify-content: center;    
  align-items: center;    
}
0 关注 分享

要回复文章请先登录注册

DCloud_UNI_HT

DCloud_UNI_HT

popup 只是限定了弹出方式 从那个方向弹出来,内容样式 ,需要自己写一下。
2025-06-26 10:40