Login.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <script setup lang="ts">
  2. import { LoginForm, RegisterForm } from './components'
  3. import { useI18n } from '@/hooks/web/useI18n'
  4. import { underlineToHump } from '@/utils'
  5. import { useAppStore } from '@/store/modules/app'
  6. import { useDesign } from '@/hooks/web/useDesign'
  7. import { ref } from 'vue'
  8. import { ElScrollbar } from 'element-plus'
  9. const { getPrefixCls } = useDesign()
  10. const prefixCls = getPrefixCls('login')
  11. const appStore = useAppStore()
  12. const { t } = useI18n()
  13. const isLogin = ref(true)
  14. const toRegister = () => {
  15. isLogin.value = false
  16. }
  17. const toLogin = () => {
  18. isLogin.value = true
  19. }
  20. </script>
  21. <template>
  22. <div
  23. :class="prefixCls"
  24. class="h-[100%] relative lt-xl:bg-[var(--login-bg-color)] lt-sm:px-10px lt-xl:px-10px lt-md:px-10px"
  25. >
  26. <ElScrollbar class="h-full">
  27. <div class="relative flex mx-auto min-h-100vh">
  28. <div
  29. :class="`${prefixCls}__left flex-1 bg-gray-500 bg-opacity-20 relative p-30px lt-xl:hidden`"
  30. >
  31. <div class="flex items-center relative text-white">
  32. <img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
  33. <span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
  34. </div>
  35. <div class="flex justify-center items-center h-[calc(100%-60px)]">
  36. <TransitionGroup
  37. appear
  38. tag="div"
  39. enter-active-class="animate__animated animate__bounceInLeft"
  40. >
  41. <img src="@/assets/svgs/login-box-bg.svg" key="1" alt="" class="w-350px" />
  42. <div class="text-3xl text-white" key="2">{{ t('login.welcome') }}</div>
  43. <div class="mt-5 font-normal text-white text-14px" key="3">
  44. <!-- {{ t('login.message') }} -->
  45. </div>
  46. </TransitionGroup>
  47. </div>
  48. </div>
  49. <div class="flex-1 p-30px lt-sm:p-10px dark:bg-[var(--login-bg-color)] relative">
  50. <div
  51. class="flex justify-between items-center text-white at-2xl:justify-end at-xl:justify-end"
  52. >
  53. <div class="flex items-center at-2xl:hidden at-xl:hidden">
  54. <img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
  55. <span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
  56. </div>
  57. <!-- <div class="flex justify-end items-center space-x-10px">
  58. <ThemeSwitch />
  59. <LocaleDropdown class="lt-xl:text-white dark:text-white" />
  60. </div> -->
  61. </div>
  62. <Transition appear enter-active-class="animate__animated animate__bounceInRight">
  63. <div
  64. class="h-full flex items-center m-auto w-[100%] at-2xl:max-w-500px at-xl:max-w-500px at-md:max-w-500px at-lg:max-w-500px"
  65. >
  66. <LoginForm
  67. v-if="isLogin"
  68. class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
  69. @to-register="toRegister"
  70. />
  71. <RegisterForm
  72. v-else
  73. class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
  74. @to-login="toLogin"
  75. />
  76. </div>
  77. </Transition>
  78. </div>
  79. </div>
  80. </ElScrollbar>
  81. </div>
  82. </template>
  83. <style lang="less" scoped>
  84. @prefix-cls: ~'@{namespace}-login';
  85. .@{prefix-cls} {
  86. overflow: auto;
  87. &__left {
  88. &::before {
  89. position: absolute;
  90. top: 0;
  91. left: 0;
  92. z-index: -1;
  93. width: 100%;
  94. height: 100%;
  95. background-image: url('@/assets/svgs/login-bg.svg');
  96. background-position: center;
  97. background-repeat: no-repeat;
  98. content: '';
  99. }
  100. }
  101. }
  102. </style>