浏览代码

auto commit

gcz 3 年之前
父节点
当前提交
8aa0cc4f51
共有 4 个文件被更改,包括 58 次插入31 次删除
  1. 10 0
      src/components/home-page/index.vue
  2. 43 27
      src/components/login/index.vue
  3. 3 2
      src/components/search-user/index.vue
  4. 2 2
      static/css/style.css

+ 10 - 0
src/components/home-page/index.vue

@@ -2,6 +2,15 @@
   <div class="home-page-container">
   <div class="home-page-container">
     <div class="home-page-header">
     <div class="home-page-header">
       <img class="portrait" :src="loginUserInfo.loginsPortrait" alt="" />
       <img class="portrait" :src="loginUserInfo.loginsPortrait" alt="" />
+      <!-- <img
+        class="portrait"
+        :src="
+          loginUserInfo.loginsPortrait
+            ? loginUserInfo.loginsPortrait
+            : '../../../static/images/avatar15.png'
+        "
+        alt=""
+      /> -->
       {{ loginUserInfo && (loginUserInfo.name || loginUserInfo.userId) }}
       {{ loginUserInfo && (loginUserInfo.name || loginUserInfo.userId) }}
       欢迎您!
       欢迎您!
     </div>
     </div>
@@ -37,6 +46,7 @@ export default {
   data() {
   data() {
     return {
     return {
       enableEditName: true,
       enableEditName: true,
+      d: require("../../../static/images/avatar15.png"),
     };
     };
   },
   },
   watch: {
   watch: {

+ 43 - 27
src/components/login/index.vue

@@ -12,13 +12,13 @@
 
 
 <script>
 <script>
 import { genTestUserSig } from "../../../public/debug/GenerateTestUserSig";
 import { genTestUserSig } from "../../../public/debug/GenerateTestUserSig";
-import { companyInfo } from "../../api";
+import { companyInfo, memberinfo } from "../../api";
 
 
 export default {
 export default {
   name: "Login",
   name: "Login",
   data() {
   data() {
     return {
     return {
-      UserID: "613912321546268672",
+      UserID: "",
       loginInfo: {},
       loginInfo: {},
       verifyCode: "",
       verifyCode: "",
       disableFetchCodeBtn: false,
       disableFetchCodeBtn: false,
@@ -38,34 +38,50 @@ export default {
         return;
         return;
       }
       }
 
 
-      companyInfo({ companyId: this.UserID }).then((res) => {
-        if (res.data.code == "200") {
-          this.loginInfo = res.data?.data;
-        } else {
-          this.loginInfo = {};
-        }
-        console.log("this.loginInfo", this.loginInfo);
+      companyInfo({ companyId: this.UserID })
+        .then((res) => {
+          if (res.data.code == "200") {
+            this.loginInfo = res.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.userName;
-        const loginsPortrait =
-          this.loginInfo.logoFileList[0]?.filesUrl ||
-          "../../../static/images/avatar15.png";
-        this.$store.commit("userLoginSuccess");
-        this.$store.commit("setLoginUserInfo", {
-          userId,
-          name,
-          loginsPortrait,
-          userSig,
-        });
+          const userSig = genTestUserSig(this.UserID).userSig;
+          const userId = this.UserID;
+          const name = this.loginInfo.userName;
+          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 = "../../../static/images/avatar15.png";
+          this.$store.commit("userLoginSuccess");
+          this.$store.commit("setLoginUserInfo", {
+            userId,
+            loginsPortrait,
+            userSig,
+          });
 
 
-        // 登录 trtcCalling
-        this.$trtcCalling.login({
-          userID: this.UserID,
-          userSig,
+          // 登录 trtcCalling
+          this.$trtcCalling.login({
+            userID: this.UserID,
+            userSig,
+          });
         });
         });
-      });
     },
     },
   },
   },
 };
 };

+ 3 - 2
src/components/search-user/index.vue

@@ -4,8 +4,8 @@
       <el-input
       <el-input
         class="inline-input"
         class="inline-input"
         v-model="searchInput"
         v-model="searchInput"
-        maxlength="11"
-        placeholder="请输入用户ID"
+        maxlength="20"
+        placeholder="请输入对方ID"
       ></el-input>
       ></el-input>
     </div>
     </div>
 
 
@@ -79,6 +79,7 @@ export default {
   watch: {
   watch: {
     searchInput: {
     searchInput: {
       handler(value) {
       handler(value) {
+        this.$store.commit("setVeteMemberId", "");
         if (this.timer) {
         if (this.timer) {
           clearTimeout(this.timer);
           clearTimeout(this.timer);
         }
         }

+ 2 - 2
static/css/style.css

@@ -64,9 +64,9 @@ body {
 }
 }
 .page-bottom .content{
 .page-bottom .content{
     max-width: 1200px;
     max-width: 1200px;
-    padding:0 24px;
+    padding:24px;
     margin: 0 auto;
     margin: 0 auto;
-    padding: 24px 0;
+    font-weight: 300;
 }
 }
 .waves {
 .waves {
     position:relative;
     position:relative;