feat(custom): 游戏大厅合并
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-11-18 22:49:00 +08:00
parent a0e7966ee4
commit 7eed620962
13 changed files with 263 additions and 176 deletions

View File

@@ -1,5 +1,5 @@
<template>
<web-view style="height: 100vh; width: 100vw" :src="url"></web-view>
<web-view class="web-view" :src="url"></web-view>
</template>
<script setup lang="ts">
@@ -14,4 +14,10 @@ useDidShow(() => {
});
</script>
<style lang="scss"></style>
<style lang="scss">
.web-view {
// 适配ios底部安全区域
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
</style>