intelligentGroup/App.vue

31 lines
602 B
Vue
Raw Normal View History

2023-09-08 14:52:40 +08:00
<script>
export default {
onLaunch: function() {
console.log('App Launch', )
this.$store.dispatch('getHomeContent', {
appid: uni.getStorageSync('appid')
})
2023-09-15 14:26:04 +08:00
this.$store.dispatch('getNavbarlist')
2023-09-08 14:52:40 +08:00
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
@import url("@/uni_modules/u-parse/u-parse.css");
/*每个页面公共css */
.content {
/* display: flex;
flex-direction: column;
align-items: center;
justify-content: center; */
padding: 10px;
min-height: calc(100vh - 20px);
}
</style>