accountBinding.vue 767 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div>
  3. <h3>账号绑定</h3>
  4. <v-divider class="mb-4"></v-divider>
  5. <div>
  6. <div class="login-user">当前登录账号: <span>13229740091</span> <span class="activeText ml-3">改绑手机号</span></div>
  7. <div class="tips mt-2 mb-1">账号即绑定的手机号,用于使用账号密码或获取验证码进行登录。</div>
  8. </div>
  9. </div>
  10. </template>
  11. <script setup name="accountBinding">
  12. </script>
  13. <style lang="scss" scoped>
  14. h3 {
  15. font-size: 20px;
  16. text-align: left;
  17. font-weight: 600;
  18. padding-bottom: 25px;
  19. }
  20. .activeText {
  21. font-size: 17px;
  22. color: var(--v-primary-base);
  23. cursor: pointer;
  24. }
  25. .tips {
  26. color: grey;
  27. font-size: 12px;
  28. font-weight: 600;
  29. }
  30. .login-user {
  31. color: grey;
  32. font-weight: 600;
  33. }
  34. </style>