case-data/App.vue
zoujiandong 89d55643f6 7.21
2025-07-21 09:45:24 +08:00

47 lines
695 B
Vue

<script setup>
import { onLaunch,onShow,onHide } from '@dcloudio/uni-app'
onLaunch(()=>{
console.log('App Launch')
});
onShow(()=>{
console.log('App Show')
});
onHide(()=>{
console.log('App Hide')
});
</script>
<style>
/*每个页面公共css */
/* #ifdef H5 */
*{
margin: 0;
padding: 0;
}
uni-page-head {
display: none;
}
/* #endif */
wx-button:after{
border: none;
}
.ellipsis-two-lines {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
/* #ifdef H5 */
.zp-container{
z-index: 0!important;
}
/* #endif */
.u-image{
background: none!important;
}
.u-steps-item__line{
height:36px!important;
}
</style>