Files
app-govern/App.vue

31 lines
551 B
Vue
Raw Normal View History

2023-01-11 16:33:13 +08:00
<script>
export default {
onLaunch: function () {
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import './common/css/base.scss';
2023-02-09 08:50:01 +08:00
/deep/ uni-tabbar .uni-tabbar__badge{
width: auto;
height: 28rpx;
line-height: 28rpx;
border-radius: 28rpx;
min-width: 28rpx;
font-size: 20rpx;
padding: 0 8rpx;
}
2023-02-07 17:59:54 +08:00
2023-02-20 14:19:28 +08:00
2023-01-11 16:33:13 +08:00
</style>