<script> import { mapMutations } from 'vuex' export default { onLaunch: function() { }, onShow: function() { console.log('App Show') }, onHide: function() { console.log('App Hide') }, globalData: { test: '' }, methods: { ...mapMutations(['setUniverifyErrorMsg', 'setUniverifyLogin']) } } </script> <style lang="scss"> @import '@/uni_modules/uni-scss/index.scss'; // *{ // font-family: Source Han Sans SC; // } /* 以下样式用于 hello uni-app 演示所需 */ page { background-color: #efeff4; height: 100%; font-size: 28rpx; /* line-height: 1.8; */ } .fix-pc-padding { padding: 0 50px; } .uni-header-logo { padding: 30rpx; flex-direction: column; justify-content: center; align-items: center; margin-top: 10rpx; } .uni-header-image { width: 100px; height: 100px; } .uni-hello-text { color: #7A7E83; } .uni-hello-addfile { text-align: center; line-height: 300rpx; background: #FFF; padding: 50rpx; margin-top: 10px; font-size: 38rpx; color: #808080; } </style>