景徳镇旅游微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
562 B

<script>
export default {
onLaunch: function() {
},
onShow: function() {
this.$store.commit('initConfig')
this.$store.commit('getBanner')
this.$store.commit('getPosition')
this.$store.commit('getSpotList')
setInterval(() => {
this.$store.commit('getPosition')
}, 20000)
},
onHide: function() {
}
}
</script>
<style lang="scss">
@import url("common.scss");
/*每个页面公共css */
body{
background-color: $uni-bg-color;
font-size: 30rpx;
color: #333;
}
.page{
padding-top: var(--window-top);
}
</style>