27 lines
430 B
Vue
27 lines
430 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>
|
|
/*每个页面公共css */
|
|
.uni-page-head{
|
|
display: none !important;
|
|
}
|
|
.uni-placeholder{
|
|
height: auto !important;
|
|
}
|
|
page {
|
|
background-color: #000000; /* 黑色 */
|
|
}
|
|
</style>
|