Browse Source

区分企业的和退役军人端登录

gcz 3 years ago
parent
commit
be52b82cff
1 changed files with 56 additions and 2 deletions
  1. 56 2
      src/components/login/index.vue

+ 56 - 2
src/components/login/index.vue

@@ -43,7 +43,9 @@ export default {
       //清掉登录状态才能重新登录
       this.$store.commit("userLogoutSuccess");
 
-      companyInfo({ companyId: this.UserID })
+      let form = sessionStorage.getItem('from');
+       if(form=='company'){
+         companyInfo({ companyId: this.UserID })
         .then((res) => {
           if (res.data.code == "200") {
             this.loginInfo = res.data?.data;
@@ -60,7 +62,7 @@ export default {
           this.$store.commit("setLoginUserInfo", {
             userId,
             name,
-            loginsPortrait,
+            // loginsPortrait,
             userSig,
           });
 
@@ -87,6 +89,58 @@ export default {
             userSig,
           });
         });
+       }else if(form=='veterans'){
+         memberinfo({ veteMemberId: this.UserID })
+        .then((res) => {
+          console.log('memberinfo',res);
+          if (res.data.code == "200") {
+            this.loginInfo = res.data?.data?.data;
+          } else {
+            this.loginInfo = {};
+          }
+          // console.log("this.loginInfo", this.loginInfo);
+
+          const userSig = genTestUserSig(this.UserID).userSig;
+          const userId = this.UserID;
+          const name = this.loginInfo.veteName;
+          // const loginsPortrait = this.loginInfo.logoFileList[0]?.filesUrl;
+          this.$store.commit("userLoginSuccess");
+          this.$store.commit("setLoginUserInfo", {
+            userId,
+            name,
+            // loginsPortrait,
+            userSig,
+          });
+
+          // 登录 trtcCalling
+          this.$trtcCalling.login({
+            userID: this.UserID,
+            userSig,
+          });
+        })
+        .catch(() => {
+          const userSig = genTestUserSig(this.UserID).userSig;
+          const userId = this.UserID;
+          const loginsPortrait = `${location.origin}/#/static/images/avatar15.png`;
+          this.$store.commit("userLoginSuccess");
+          this.$store.commit("setLoginUserInfo", {
+            userId,
+            // loginsPortrait,
+            userSig,
+          });
+
+          // 登录 trtcCalling
+          this.$trtcCalling.login({
+            userID: this.UserID,
+            userSig,
+          });
+        });
+
+       }else{
+         console.log('1111 form',form);
+       }
+
+      
     },
   },
 };