|
|
|
@ -1,67 +1,59 @@
@@ -1,67 +1,59 @@
|
|
|
|
|
<template> |
|
|
|
|
<template v-if="getShow"> |
|
|
|
|
<LoginFormTitle class="enter-x" /> |
|
|
|
|
<Form class="p-4 enter-x" :model="formData" :rules="getFormRules" ref="formRef"> |
|
|
|
|
<LoginFormTitle class="enter-x"/> |
|
|
|
|
<Form ref="formRef" class="p-4 enter-x" :model="formData" :rules="getFormRules"> |
|
|
|
|
<FormItem name="account" class="enter-x"> |
|
|
|
|
<Input |
|
|
|
|
class="fix-auto-fill" |
|
|
|
|
size="large" |
|
|
|
|
v-model:value="formData.account" |
|
|
|
|
:placeholder="t('sys.login.userName')" |
|
|
|
|
<Input v-model:value="formData.account" |
|
|
|
|
class="fix-auto-fill" |
|
|
|
|
size="large" |
|
|
|
|
:placeholder="t('sys.login.userName')" |
|
|
|
|
/> |
|
|
|
|
</FormItem> |
|
|
|
|
<FormItem name="mobile" class="enter-x"> |
|
|
|
|
<Input |
|
|
|
|
size="large" |
|
|
|
|
v-model:value="formData.mobile" |
|
|
|
|
:placeholder="t('sys.login.mobile')" |
|
|
|
|
class="fix-auto-fill" |
|
|
|
|
<Input v-model:value="formData.mobile" |
|
|
|
|
size="large" |
|
|
|
|
:placeholder="t('sys.login.mobile')" |
|
|
|
|
class="fix-auto-fill" |
|
|
|
|
/> |
|
|
|
|
</FormItem> |
|
|
|
|
<FormItem name="sms" class="enter-x"> |
|
|
|
|
<CountdownInput |
|
|
|
|
size="large" |
|
|
|
|
class="fix-auto-fill" |
|
|
|
|
v-model:value="formData.sms" |
|
|
|
|
:placeholder="t('sys.login.smsCode')" |
|
|
|
|
<CountdownInput v-model:value="formData.sms" |
|
|
|
|
size="large" |
|
|
|
|
class="fix-auto-fill" |
|
|
|
|
:placeholder="t('sys.login.smsCode')" |
|
|
|
|
/> |
|
|
|
|
</FormItem> |
|
|
|
|
<FormItem name="password" class="enter-x"> |
|
|
|
|
<StrengthMeter |
|
|
|
|
size="large" |
|
|
|
|
v-model:value="formData.password" |
|
|
|
|
:placeholder="t('sys.login.password')" |
|
|
|
|
<StrengthMeter v-model:value="formData.password" |
|
|
|
|
size="large" |
|
|
|
|
:placeholder="t('sys.login.password')" |
|
|
|
|
/> |
|
|
|
|
</FormItem> |
|
|
|
|
<FormItem name="confirmPassword" class="enter-x"> |
|
|
|
|
<InputPassword |
|
|
|
|
size="large" |
|
|
|
|
visibilityToggle |
|
|
|
|
v-model:value="formData.confirmPassword" |
|
|
|
|
:placeholder="t('sys.login.confirmPassword')" |
|
|
|
|
<InputPassword v-model:value="formData.confirmPassword" |
|
|
|
|
size="large" |
|
|
|
|
visibilityToggle |
|
|
|
|
:placeholder="t('sys.login.confirmPassword')" |
|
|
|
|
/> |
|
|
|
|
</FormItem> |
|
|
|
|
|
|
|
|
|
<FormItem class="enter-x" name="policy"> |
|
|
|
|
<!-- No logic, you need to deal with it yourself --> |
|
|
|
|
<Checkbox v-model:checked="formData.policy" size="small"> |
|
|
|
|
{{ t('sys.login.policy') }} |
|
|
|
|
</Checkbox> |
|
|
|
|
</FormItem> |
|
|
|
|
|
|
|
|
|
<Button |
|
|
|
|
type="primary" |
|
|
|
|
class="enter-x" |
|
|
|
|
size="large" |
|
|
|
|
block |
|
|
|
|
@click="handleRegister" |
|
|
|
|
:loading="loading" |
|
|
|
|
> |
|
|
|
|
{{ t('sys.login.registerButton') }} |
|
|
|
|
</Button> |
|
|
|
|
<Button size="large" block class="mt-4 enter-x" @click="handleBackLogin"> |
|
|
|
|
{{ t('sys.login.backSignIn') }} |
|
|
|
|
</Button> |
|
|
|
|
<Button type="primary" |
|
|
|
|
class="enter-x" |
|
|
|
|
size="large" |
|
|
|
|
block |
|
|
|
|
:loading="loading" |
|
|
|
|
@click="handleRegister" |
|
|
|
|
>{{ t('sys.login.registerButton') }}</Button> |
|
|
|
|
<Button size="large" |
|
|
|
|
block |
|
|
|
|
class="mt-4 enter-x" |
|
|
|
|
@click="handleBackLogin" |
|
|
|
|
>{{ t('sys.login.backSignIn') }}</Button> |
|
|
|
|
</Form> |
|
|
|
|
</template> |
|
|
|
|
</template> |
|
|
|
@ -78,10 +70,8 @@
@@ -78,10 +70,8 @@
|
|
|
|
|
const InputPassword = Input.Password; |
|
|
|
|
const { t } = useI18n(); |
|
|
|
|
const { handleBackLogin, getLoginState } = useLoginState(); |
|
|
|
|
|
|
|
|
|
const formRef = ref(); |
|
|
|
|
const loading = ref(false); |
|
|
|
|
|
|
|
|
|
const formData = reactive({ |
|
|
|
|
account: '', |
|
|
|
|
password: '', |
|
|
|
@ -90,10 +80,8 @@
@@ -90,10 +80,8 @@
|
|
|
|
|
sms: '', |
|
|
|
|
policy: false, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { getFormRules } = useFormRules(formData); |
|
|
|
|
const { validForm } = useFormValid(formRef); |
|
|
|
|
|
|
|
|
|
const getShow = computed(() => unref(getLoginState) === LoginStateEnum.REGISTER); |
|
|
|
|
|
|
|
|
|
async function handleRegister() { |
|
|
|
|