修改页面高度
This commit is contained in:
@@ -168,8 +168,9 @@ export default {
|
|||||||
position: relative;
|
position: relative;
|
||||||
padding-bottom: 60rpx;
|
padding-bottom: 60rpx;
|
||||||
padding-top: 24rpx;
|
padding-top: 24rpx;
|
||||||
min-height: 100vh;
|
height: calc(100vh - (44px + env(safe-area-inset-top)));
|
||||||
background: linear-gradient(180deg, #d2edff 0%, #ffffff 100%);
|
background: linear-gradient(180deg, #d2edff 0%, #ffffff 100%);
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.back-arrow {
|
.back-arrow {
|
||||||
|
@@ -74,10 +74,11 @@
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.service-container {
|
.service-container {
|
||||||
height: 100vh;
|
height: calc(100vh - (44px + env(safe-area-inset-top)));
|
||||||
background: #fff;
|
background: #fff;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
.fixed-header {
|
.fixed-header {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
@@ -104,6 +104,7 @@ export default {
|
|||||||
background-color: #f5f7fa;
|
background-color: #f5f7fa;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
padding-bottom: 120rpx;
|
padding-bottom: 120rpx;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.meeting-room-detail {
|
.meeting-room-detail {
|
||||||
|
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<!-- 签到二维码 -->
|
<!-- 签到二维码 -->
|
||||||
<view class="qr-code-section" v-if="pageStatus === 'started' || pageStatus === 'ended'">
|
<view class="qr-code-section" v-if="pageStatus === 'started' || pageStatus === 'ended'">
|
||||||
<text class="qr-title">签到二维码</text>
|
<text class="qr-title">邀请二维码</text>
|
||||||
<view class="qr-code-container"
|
<view class="qr-code-container"
|
||||||
:class="{'disabled-qrcode': pageStatus === 'ended'}"
|
:class="{'disabled-qrcode': pageStatus === 'ended'}"
|
||||||
@longpress="saveQRCode">
|
@longpress="saveQRCode">
|
||||||
|
Reference in New Issue
Block a user