|
|
|
@ -3,13 +3,15 @@ |
|
|
|
<v-head :name="data.accountName"></v-head> |
|
|
|
<div class="bootm"> |
|
|
|
<v-sidebar :auth="data.auth"></v-sidebar> |
|
|
|
<div class="content-box"> |
|
|
|
<div class="content"> |
|
|
|
<transition name="move" mode="out-in"> |
|
|
|
<router-view></router-view> |
|
|
|
</transition> |
|
|
|
<!-- <div> --> |
|
|
|
<div class="content-box"> |
|
|
|
<div class="content"> |
|
|
|
<transition name="move" mode="out-in"> |
|
|
|
<router-view></router-view> |
|
|
|
</transition> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- </div> --> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
@ -72,18 +74,27 @@ export default { |
|
|
|
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only --> |
|
|
|
<style scoped> |
|
|
|
.wrapper{ |
|
|
|
overflow:auto; |
|
|
|
/* overflow: overlay */ |
|
|
|
} |
|
|
|
.content-box{ |
|
|
|
width: 100%; |
|
|
|
min-height:903px; |
|
|
|
min-width: 1700px; |
|
|
|
border-top: 2px solid #9A9A9A; |
|
|
|
border-left: 2px solid #9A9A9A; |
|
|
|
background: #F0F2F5; |
|
|
|
box-sizing: border-box; |
|
|
|
/* overflow: auto; */ |
|
|
|
|
|
|
|
} |
|
|
|
.content{ |
|
|
|
|
|
|
|
} |
|
|
|
.bootm{ |
|
|
|
display: flex; |
|
|
|
height: 100%; |
|
|
|
/* height: 100%; */ |
|
|
|
/* min-height:903px; */ |
|
|
|
background: #F0F2F5; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|