|
|
|
@ -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() |
|
|
|
|