用<root-portal></root-portal>包裹弹窗提高弹窗层级。
作用是使整个子树从页面中脱离出来,类似于在 CSS 中使用 fixed position 的效果。主要用于制作弹窗、弹出层等
<scroll-view>
<view>
<view>...</view>
// 弹窗
<root-portal>
<u-popup :show="openfinishPopup" @close="openfinishPopup = false" mode="center" :round="15" :safeAreaInsetBottom="false">
<view class="tip-box">
----
</view>
</u-popup>
</root-portal>
</view>
</scroll-view>
https://developers.weixin.qq.com/miniprogram/dev/component/root-portal.html