建材商城系统20241014
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.
 
 
 

26 lines
417 B

<script>
export default {
onLaunch: function() {
},
onShow: function() {
this.$store.commit('initConfig')
if(uni.getStorageSync('token')){
this.$store.commit('getQrCode')
}
},
onHide: function() {
}
}
</script>
<style>
@import url("common.scss");
/*每个页面公共css */
body{
background-color: #f7f7f7;
font-size: 30rpx;
}
.page{
padding-top: var(--window-top);
}
</style>