2023-09-18 07:35:21 +00:00
|
|
|
<script>
|
2023-09-19 02:50:09 +00:00
|
|
|
import tabBar from './util/tabbar'
|
|
|
|
|
2023-09-18 07:35:21 +00:00
|
|
|
export default {
|
|
|
|
onLaunch: function() {
|
2023-09-19 02:50:09 +00:00
|
|
|
uni.hideTabBar()
|
|
|
|
uni.setStorageSync('tabBar', tabBar)
|
2023-09-18 07:35:21 +00:00
|
|
|
},
|
|
|
|
onShow: function() {
|
|
|
|
console.log('App Show')
|
|
|
|
},
|
|
|
|
onHide: function() {
|
|
|
|
console.log('App Hide')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2023-09-19 02:50:09 +00:00
|
|
|
<style lang="scss">
|
|
|
|
@import "uview-ui/index.scss";
|
2023-09-18 07:35:21 +00:00
|
|
|
</style>
|