You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
477 B
Vue

11 months ago
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
11 months ago
if (this.$route.query.uid){
uni.setStorageSync('uid',this.$route.query.uid)
}
11 months ago
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
11 months ago
<style lang="scss">
11 months ago
/*每个页面公共css */
11 months ago
@import "./tm-vuetify/mian.min.css";
@import "./tm-vuetify/scss/theme.css";
@import "uview-ui/index.scss";
11 months ago
</style>