first commit

This commit is contained in:
lixiaobang 2025-03-22 17:55:51 +08:00
commit 242b31e4e9
1 changed files with 26 additions and 0 deletions

26
App.vue Normal file
View File

@ -0,0 +1,26 @@
<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>