40 lines
513 B
Vue
40 lines
513 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;
|
|
}
|
|
</style> |