27 lines
480 B
Vue
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>
|