<template>
<view class="wrapper">
<view class="main">...</view>
<view class="footer">xx智慧农场</view>
</view >
</template>
<style>
page {
height: 100%;
}
.wrapper {
height: 100%;
}
.main {
min-height: 100%;
/* 与.footer的高度对应 */
padding-bottom: 80rpx;
}
.footer {
height: 80rpx;
line-height: 60rpx;
text-align: center;
margin-top: -80rpx;
}
</style>
参考:https://www.jianshu.com/p/a8f72005e9c0