<!--index.wxml--> <view> </view>
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
}
})
/**index.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}

原文:https://www.cnblogs.com/tabCtrlShift/p/9218438.html