中建四局:恢复页面的缩放

This commit is contained in:
Luck-Xiaomi 2022-09-09 11:45:00 +08:00
parent e17cdc5ca9
commit c0cf57c070

View File

@ -1,5 +1,4 @@
<template> <template>
<vue-scroll>
<div class="zjsj-large-screen"> <div class="zjsj-large-screen">
<div class="header"> <div class="header">
<div class="info"> <div class="info">
@ -36,7 +35,6 @@
<router-view></router-view> <router-view></router-view>
</div> </div>
</div> </div>
</vue-scroll>
</template> </template>
<script> <script>
@ -59,10 +57,9 @@ export default {
@import url("./style.less"); @import url("./style.less");
.zjsj-large-screen { .zjsj-large-screen {
width: 100%; width: 100%;
// height: 100%; height: 100%;
color: #fff; color: #fff;
background-color: #182337; background-color: #182337;
overflow-y: scroll;
.header { .header {
width: 100%; width: 100%;
height: 110px; height: 110px;
@ -160,7 +157,7 @@ export default {
box-sizing: border-box; box-sizing: border-box;
padding: 12px 20px; padding: 12px 20px;
width: 100%; width: 100%;
height: calc(1080px - 110px); height: calc(100% - 110px);
} }
} }