Onlife/App.vue
2025-04-19 15:38:48 +08:00

27 lines
480 B
Vue

<script>
export default {
onLaunch: function() {
uni.onTabBarMidButtonTap(()=>{
uni.switchTab({
url:"/pages/wallet/index"
})
})
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
.uni-tabbar__item:nth-child(4) .uni-tabbar__icon {
width: 40px !important;
height: 40px !important;
// margin-top: -10px !important;
}
</style>