Browse Source

auto commit

gcz 4 years ago
parent
commit
ec8cf68d68
2 changed files with 4 additions and 3 deletions
  1. 2 1
      pages/usercenter/question/question.vue
  2. 2 2
      pages/usercenter/usercenter.vue

+ 2 - 1
pages/usercenter/question/question.vue

@@ -52,6 +52,7 @@
 			}
 		},
 		onShow() {
+			this.token = this.$store.state.token;
 		},
 		onLoad() {
 			let self = this;
@@ -74,7 +75,7 @@
 		methods: {
 			/*mescroll组件初始化的回调,可获取到mescroll对象 (此处可删,mixins已默认)*/
 			mescrollInit(mescroll) {
-				// this.mescroll = mescroll;
+				this.mescroll = mescroll;
 			},
 			/*下拉刷新的回调, 有三种处理方式:*/
 			downCallback(){			

+ 2 - 2
pages/usercenter/usercenter.vue

@@ -98,8 +98,8 @@
 			...mapState(['hasLogin', 'userInfo'])
 		},
 		onShow() {
-			console.log('hasLogin',this.hasLogin);
-			console.log('userInfo',this.userInfo);
+			// console.log('hasLogin',this.hasLogin);
+			// console.log('userInfo',this.userInfo);
 			if (this.hasLogin) {
 				this.upInfo();
 			}