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.
 
 
 
 

47 lines
892 B

<script>
export default {
onLaunch: function(options) {
this.$auth.getLocalUserInfo()
this.$store.commit('savePath', options.path); //打开时访问的链接
},
onShow: function() {
console.log('-------------- 小程序显示 --------------')
},
onHide: function() {
console.log('-------------- bye bye --------------')
},
}
</script>
<style>
/*每个页面公共css */
.page {
box-sizing: border-box;
width: 100vw;
height: 100vh;
background: #efefef;
overflow: auto;
color: #100F19;
}
checkbox{
border: #4963F4;
}
button[type='primary'] {
background-color: #327AFE;
color: #fff;
}
button[type='default'] {
background-color: #FFFFFF;
border: 1px solid rgba(0,0,0,0.15);
color: rgba(0,0,0,0.65);
}
.buttons{
display: flex;
}
.button button{
margin: 0 6rpx;
}
</style>