You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
2 years ago
|
<template>
|
||
|
<template v-if="getShow">
|
||
|
<LoginFormTitle class="enter-x" />
|
||
|
<Form class="p-4 enter-x" :model="formData" :rules="getFormRules" ref="formRef">
|
||
|
<FormItem name="mobile" class="enter-x">
|
||
|
<Input size="large" v-model:value="formData.mobile" :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')" />
|
||
|
</FormItem>
|
||
|
|
||
|
<FormItem class="enter-x">
|
||
|
<Button type="primary" size="large" block @click="handleLogin" :loading="loading">
|
||
|
{{ t('sys.login.loginButton') }}
|
||
|
</Button>
|
||
|
<Button size="large" block class="mt-4" @click="handleBackLogin">
|
||
|
{{ t('sys.login.backSignIn') }}
|
||
|
</Button>
|
||
|
</FormItem>
|
||
|
</Form>
|
||
|
</template>
|
||
|
</template>
|
||
|
<script lang="ts" setup>
|
||
|
import { reactive, ref, computed, unref } from 'vue'
|
||
|
import { Form, Input, Button } from 'ant-design-vue'
|
||
|
import { CountdownInput } from '@/components/CountDown'
|
||
|
import LoginFormTitle from './LoginFormTitle.vue'
|
||
|
import { useI18n } from '@/hooks/web/useI18n'
|
||
|
import { useLoginState, useFormRules, useFormValid, LoginStateEnum } from './useLogin'
|
||
|
|
||
|
const FormItem = Form.Item
|
||
|
const { t } = useI18n()
|
||
|
const { handleBackLogin, getLoginState } = useLoginState()
|
||
|
const { getFormRules } = useFormRules()
|
||
|
|
||
|
const formRef = ref()
|
||
|
const loading = ref(false)
|
||
|
|
||
|
const formData = reactive({
|
||
|
mobile: '',
|
||
|
sms: ''
|
||
|
})
|
||
|
|
||
|
const { validForm } = useFormValid(formRef)
|
||
|
|
||
|
const getShow = computed(() => unref(getLoginState) === LoginStateEnum.MOBILE)
|
||
|
|
||
|
async function handleLogin() {
|
||
|
const data = await validForm()
|
||
|
if (!data) return
|
||
|
console.log(data)
|
||
|
}
|
||
|
</script>
|