fix(view): 修复登入页面点击其他登入方式后返回时视图异常的bug
parent
f780285364
commit
0657ea5f83
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<template v-if="getShow">
|
<div v-if="getShow">
|
||||||
<LoginFormTitle class="enter-x" />
|
<LoginFormTitle class="enter-x" />
|
||||||
<Form class="p-4 enter-x" :model="formData" :rules="getFormRules" ref="formRef">
|
<Form class="p-4 enter-x" :model="formData" :rules="getFormRules" ref="formRef">
|
||||||
<FormItem name="mobile" class="enter-x">
|
<FormItem name="mobile" class="enter-x">
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
</Button>
|
</Button>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
</Form>
|
</Form>
|
||||||
</template>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { reactive, ref, computed, unref } from 'vue'
|
import { reactive, ref, computed, unref } from 'vue'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<template v-if="getShow">
|
<div v-if="getShow">
|
||||||
<LoginFormTitle class="enter-x" />
|
<LoginFormTitle class="enter-x" />
|
||||||
<div class="enter-x min-w-64 min-h-64">
|
<div class="enter-x min-w-64 min-h-64">
|
||||||
<QrCode :value="qrCodeUrl" class="enter-x flex justify-center xl:justify-start" :width="280" />
|
<QrCode :value="qrCodeUrl" class="enter-x flex justify-center xl:justify-start" :width="280" />
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
{{ t('sys.login.backSignIn') }}
|
{{ t('sys.login.backSignIn') }}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, unref } from 'vue'
|
import { computed, unref } from 'vue'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<template v-if="getShow">
|
<div v-if="getShow">
|
||||||
<LoginFormTitle class="enter-x" />
|
<LoginFormTitle class="enter-x" />
|
||||||
<Form class="p-4 enter-x" :model="formData" :rules="getFormRules" ref="formRef">
|
<Form class="p-4 enter-x" :model="formData" :rules="getFormRules" ref="formRef">
|
||||||
<FormItem name="account" class="enter-x">
|
<FormItem name="account" class="enter-x">
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
{{ t('sys.login.backSignIn') }}
|
{{ t('sys.login.backSignIn') }}
|
||||||
</Button>
|
</Button>
|
||||||
</Form>
|
</Form>
|
||||||
</template>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { reactive, ref, unref, computed } from 'vue'
|
import { reactive, ref, unref, computed } from 'vue'
|
||||||
|
|
Loading…
Reference in New Issue