case-data/App.vue
2025-08-15 09:18:09 +08:00

71 lines
1.1 KiB
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;
}
.back{
/* margin-top: -8rpx; */
padding:0 20rpx 0rpx 20rpx;
}
.ellipsis-one-lines {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* #ifdef H5 */
.zp-container{
z-index: 0!important;
}
/* #endif */
.u-image{
background: none!important;
}
.u-steps-item__line{
height:36px!important;
}
.casesdown.active{
color:#3CC7C0!important;
}
.u-dropdown__menu__item__arrow--rotate .uicon-arrow-down{
color: #3cc7c0 !important;
}
.tagbox{
flex-wrap: wrap;
}
.tagbox .tag{
margin:5rpx 0 ;
}
.zp-paging-container{
background-color: #fff!important;
}
</style>