123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <Form
- v-show="getShow"
- :rules="rules"
- :schema="schema"
- class="dark:(border-1 border-[var(--el-border-color)] border-solid)"
- hide-required-asterisk
- label-position="top"
- size="large"
- @register="register"
- >
- <template #title>
- <LoginFormTitle style="width: 100%" />
- </template>
- <template #code="form">
- <div class="w-[100%] flex">
- <el-input v-model="form['code']" :placeholder="t('login.codePlaceholder')" />
- </div>
- </template>
- <template #register>
- <div class="w-[100%]">
- <XButton
- :loading="loading"
- :title="t('login.register')"
- class="w-[100%]"
- type="primary"
- @click="loginRegister()"
- />
- </div>
- <div class="w-[100%] mt-15px">
- <XButton :title="t('login.hasUser')" class="w-[100%]" @click="handleBackLogin()" />
- </div>
- </template>
- </Form>
- </template>
- <script lang="ts" name="RegisterForm" setup>
- import type { FormRules } from 'element-plus'
- import { useForm } from '@/hooks/web/useForm'
- import { useValidator } from '@/hooks/web/useValidator'
- import LoginFormTitle from './LoginFormTitle.vue'
- import { LoginStateEnum, useLoginState } from './useLogin'
- import { FormSchema } from '@/types/form'
- const { t } = useI18n()
- const { required } = useValidator()
- const { register, elFormRef } = useForm()
- const { handleBackLogin, getLoginState } = useLoginState()
- const getShow = computed(() => unref(getLoginState) === LoginStateEnum.REGISTER)
- const schema = reactive<FormSchema[]>([
- {
- field: 'title',
- colProps: {
- span: 24
- }
- },
- {
- field: 'username',
- label: t('login.username'),
- value: '',
- component: 'Input',
- colProps: {
- span: 24
- },
- componentProps: {
- placeholder: t('login.usernamePlaceholder')
- }
- },
- {
- field: 'password',
- label: t('login.password'),
- value: '',
- component: 'InputPassword',
- colProps: {
- span: 24
- },
- componentProps: {
- style: {
- width: '100%'
- },
- strength: true,
- placeholder: t('login.passwordPlaceholder')
- }
- },
- {
- field: 'check_password',
- label: t('login.checkPassword'),
- value: '',
- component: 'InputPassword',
- colProps: {
- span: 24
- },
- componentProps: {
- style: {
- width: '100%'
- },
- strength: true,
- placeholder: t('login.passwordPlaceholder')
- }
- },
- {
- field: 'code',
- label: t('login.code'),
- colProps: {
- span: 24
- }
- },
- {
- field: 'register',
- colProps: {
- span: 24
- }
- }
- ])
- const rules: FormRules = {
- username: [required()],
- password: [required()],
- check_password: [required()],
- code: [required()]
- }
- const loading = ref(false)
- const loginRegister = async () => {
- const formRef = unref(elFormRef)
- formRef?.validate(async (valid) => {
- if (valid) {
- try {
- loading.value = true
- } finally {
- loading.value = false
- }
- }
- })
- }
- </script>
|