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