Ver código fonte

修改获取用户信息后的调用

aaa 3 anos atrás
pai
commit
4e2f033f27
1 arquivos alterados com 8 adições e 4 exclusões
  1. 8 4
      src/views/home/index.vue

+ 8 - 4
src/views/home/index.vue

@@ -122,7 +122,14 @@ export default {
           .catch(() => {
           .catch(() => {
             this.$store.commit("toggleLoading", false);
             this.$store.commit("toggleLoading", false);
           });
           });
+        this.afterGetUserInfo();
       }
       }
+    },
+    // 操作:切换tab
+    onChangeTabFun(index) {
+      this.currentComponents = this.tabbars[this.activeTabName].pageName;
+    },
+    afterGetUserInfo() {
       // 获取所有收藏
       // 获取所有收藏
       this.getCollection();
       this.getCollection();
       // 获取所有考试历史
       // 获取所有考试历史
@@ -132,10 +139,6 @@ export default {
       this.activeTabName = 0;
       this.activeTabName = 0;
       this.onChangeTabFun(this.activeTabName);
       this.onChangeTabFun(this.activeTabName);
     },
     },
-    // 操作:切换tab
-    onChangeTabFun(index) {
-      this.currentComponents = this.tabbars[this.activeTabName].pageName;
-    },
     // 获取所有收藏
     // 获取所有收藏
     getCollection() {
     getCollection() {
       let path = {
       let path = {
@@ -266,6 +269,7 @@ export default {
             value: res.data
             value: res.data
           });
           });
           console.log("蓝信用户信息---" + JSON.stringify(res));
           console.log("蓝信用户信息---" + JSON.stringify(res));
+          this.afterGetUserInfo();
         })
         })
         .catch(() => {
         .catch(() => {
           this.$store.commit("toggleLoading", false);
           this.$store.commit("toggleLoading", false);