Browse Source

登陆

master
赵鹏 1 month ago
parent
commit
583be96a44
  1. 19
      src/views/Login/Login.vue

19
src/views/Login/Login.vue

@ -34,9 +34,10 @@
class="m-auto h-[calc(100%-60px)] w-[100%] flex items-center at-2xl:max-w-500px at-lg:max-w-500px at-md:max-w-500px at-xl:max-w-500px"
>
<!-- 二维码登录 -->
<QrCodeForm class="m-auto h-auto p-20px lt-xl:(rounded-3xl light:bg-white)" />
<!-- 账号登录 -->
<LoginForm v-if="isIpAccess" class="m-auto h-auto p-20px lt-xl:(rounded-3xl light:bg-white)" />
<!-- 二维码登录 -->
<QrCodeForm v-else class="m-auto h-auto p-20px lt-xl:(rounded-3xl light:bg-white)" />
</div>
</Transition>
@ -55,7 +56,17 @@ import { LocaleDropdown } from '@/layout/components/LocaleDropdown'
import { LoginForm, MobileForm, QrCodeForm, RegisterForm, SSOLoginVue, ForgetPasswordForm } from './components'
defineOptions({ name: 'Login' })
const isIpAccess = ref(false)
onMounted(() => {
const hostname = window.location.hostname
if(hostname == 'localhost'){
isIpAccess.value = true;
}
else{
isIpAccess.value = /^(\d{1,3}\.){3}\d{1,3}$/.test(hostname)
}
// IP访
})
const { t } = useI18n()
const appStore = useAppStore()
const { getPrefixCls } = useDesign()

Loading…
Cancel
Save