|
@@ -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,
|
|
|
|
+ });
|
|
});
|
|
});
|
|
- });
|
|
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|