index.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div class="user-login">
  3. <el-input
  4. placeholder="用户ID"
  5. v-model="UserID"
  6. maxlength="11"
  7. class="phone-num"
  8. ></el-input>
  9. <el-button class="user-login-btn" @click="handleLogin">登陆</el-button>
  10. </div>
  11. </template>
  12. <script>
  13. import { genTestUserSig } from "../../../public/debug/GenerateTestUserSig";
  14. export default {
  15. name: "Login",
  16. data() {
  17. return {
  18. UserID: "",
  19. verifyCode: "",
  20. disableFetchCodeBtn: false,
  21. };
  22. },
  23. created() {
  24. console.log("this.$route.query", this.$route.query);
  25. this.UserID = this.$route.query.inviterId;
  26. if (this.UserID) {
  27. this.handleLogin();
  28. }
  29. },
  30. methods: {
  31. handleLogin: async function () {
  32. console.log("userid");
  33. if (!this.UserID) {
  34. this.$message.error("请输入用户ID");
  35. return;
  36. }
  37. const userSig = genTestUserSig(this.UserID).userSig;
  38. const userId = this.UserID;
  39. this.$store.commit("userLoginSuccess");
  40. this.$store.commit("setLoginUserInfo", {
  41. userId,
  42. userSig,
  43. });
  44. // 登录 trtcCalling
  45. this.$trtcCalling.login({
  46. userID: this.UserID,
  47. userSig,
  48. });
  49. },
  50. },
  51. };
  52. </script>
  53. <style scoped>
  54. .user-login {
  55. font-size: 16px;
  56. width: 400px;
  57. margin: 0 auto;
  58. padding-top: 50px;
  59. }
  60. .phone-num {
  61. margin-bottom: 5px;
  62. }
  63. .user-login-btn {
  64. margin-top: 10px;
  65. width: 100%;
  66. }
  67. @media screen and (max-width: 767px) {
  68. .user-login {
  69. font-size: 16px;
  70. width: 90%;
  71. min-width: 300px;
  72. margin: 0 auto;
  73. padding-top: 50px;
  74. }
  75. }
  76. </style>