35 lines
615 B
35 lines
615 B
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
uni.setTabBarItem({
|
|
index:0,
|
|
text:this.$t('language.homepage')
|
|
})
|
|
uni.setTabBarItem({
|
|
index:1,
|
|
text:this.$t('language.product')
|
|
})
|
|
uni.setTabBarItem({
|
|
index:2,
|
|
text:this.$t('language.case')
|
|
})
|
|
uni.setTabBarItem({
|
|
index:3,
|
|
text:this.$t('language.follow')
|
|
})
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
},
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import "uview-ui/index.scss";
|
|
</style>
|
|
|