代码
<template>
<view class="holy">
<view class="header">
</view>
<view class="body">
<view class="content">
</view>
<view class="nav">
</view>
<view class="ads">
</view>
</view>
<view class="footer">
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.holy{
display: flex;
min-height: 100vh;
flex-direction: column;
.header,.footer{
flex:1;
background-color: #666666;
}
.body{
display: flex;
flex: 1;
.content{
flex: 1;
background-color: #D6D6D6;
}
.ads{
flex: 0 0 20%;
background-color: #FF6633;
}
.nav{
flex: 0 0 20%;
order: -1;
background-color: #77BBDD;
}
}
}
</style>
图示
