2023-10-12 08:45:00 +08:00

68 lines
759 B
Vue

<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import '@/uni_modules/uview-ui/theme.scss';
/*每个页面公共css */
.is_image {
display: block;
width: 100%;
height: 100%;
}
.mt28 {
margin-top: 28rpx;
}
.mt60 {
margin-top: 60rpx;
}
.mt50 {
margin-top: 50rpx;
}
.mt16 {
margin-top: 16rpx;
}
.pr14 {
padding-right: 14rpx;
}
.pl14 {
padding-left: 14rpx;
}
.ml8 {
margin-left: 8rpx;
}
.mr20 {
margin-right: 20rpx;
}
.ml16 {
margin-left: 16rpx;
}
.ml10 {
margin-left: 10rpx;
}
.mt24 {
margin-top: 24rpx;
}
</style>