fix(vr-ticket-wallet): limit qr-popup max-height to 80vh to avoid being covered by WeChat global floating menu on iPad

master
Council 2026-06-30 17:57:41 +08:00
parent c7cac01528
commit 7db0b8707c
1 changed files with 3 additions and 2 deletions

View File

@ -78,7 +78,7 @@
<view
class="dot"
v-for="(ticket, tIdx) in tickets"
:key="'dot-' + tIdx"
:key="tIdx"
:class="{ 'dot-active': tIdx === currentIndex }"
></view>
</view>
@ -183,10 +183,11 @@ export default {
/* ========== 弹窗容器 ========== */
.qr-popup-container {
width: 620rpx;
max-height: 80vh;
background: #111111;
color: #ffffff;
border-radius: 48rpx;
overflow: hidden;
overflow-y: auto;
border: 4rpx solid #333333;
}