31 lines
456 B
Vue
31 lines
456 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">
|
|
/*每个页面公共css */
|
|
uni-page{
|
|
width:100vw;
|
|
height:100vh;
|
|
}
|
|
uni-page-body{
|
|
height: 100%;
|
|
}
|
|
uni-page-head{
|
|
display: none !important;
|
|
}
|
|
body{
|
|
font-family: PingFang SC , Source Han Sans;
|
|
}
|
|
</style>
|