123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <template>
- <LoginFormTitle v-show="getShow" class="enter-x" />
- <Form
- class="p-4 enter-x"
- :model="formData"
- :rules="getFormRules"
- ref="formRef"
- v-show="getShow"
- @keypress.enter="handleLogin"
- >
- <FormItem name="account" class="enter-x">
- <Input
- size="large"
- v-model:value="formData.account"
- :placeholder="t('sys.login.userName')"
- class="fix-auto-fill"
- />
- </FormItem>
- <FormItem name="password" class="enter-x">
- <InputPassword
- size="large"
- visibilityToggle
- v-model:value="formData.password"
- :placeholder="t('sys.login.password')"
- />
- </FormItem>
- <ARow class="enter-x">
- <ACol :span="12">
- <FormItem name="captcha">
- <Input
- size="large"
- v-model:value="formData.captcha"
- :placeholder="t('sys.login.captcha')"
- class="captcha"
- />
- </FormItem>
- </ACol>
- <ACol :span="12" :style="{ 'text-align': 'right' }">
- <img class="captcha-img" :src="`http://192.168.0.47:8190/captcha.jpg?t=${Date.now()}`" />
- </ACol>
- </ARow>
- <!-- <FormItem name="drag" class="enter-x" :style="{ 'text-align': 'right' }">
- <BasicDragVerify
- ref="el3"
- @success="handleSuccess"
- text="拖动以进行校验"
- successText="校验成功"
- />
- </FormItem> -->
- <ARow class="enter-x">
- <ACol :span="12">
- <FormItem>
- <!-- No logic, you need to deal with it yourself -->
- <Checkbox v-model:checked="rememberMe" size="small">
- {{ t('sys.login.rememberMe') }}
- </Checkbox>
- </FormItem>
- </ACol>
- <ACol :span="12">
- <FormItem :style="{ 'text-align': 'right' }">
- <!-- No logic, you need to deal with it yourself -->
- <Button type="link" size="small" @click="setLoginState(LoginStateEnum.RESET_PASSWORD)">
- {{ t('sys.login.forgetPassword') }}
- </Button>
- </FormItem>
- </ACol>
- </ARow>
- <FormItem class="enter-x">
- <Button type="primary" size="large" block @click="handleLogin" :loading="loading">
- {{ t('sys.login.loginButton') }}
- </Button>
- <!-- <Button size="large" class="mt-4 enter-x" block @click="handleRegister">
- {{ t('sys.login.registerButton') }}
- </Button> -->
- </FormItem>
- <!-- <ARow class="enter-x">
- <ACol :md="8" :xs="24">
- <Button block @click="setLoginState(LoginStateEnum.MOBILE)">
- {{ t('sys.login.mobileSignInFormTitle') }}
- </Button>
- </ACol>
- <ACol :md="8" :xs="24" class="!my-2 !md:my-0 xs:mx-0 md:mx-2">
- <Button block @click="setLoginState(LoginStateEnum.QR_CODE)">
- {{ t('sys.login.qrSignInFormTitle') }}
- </Button>
- </ACol>
- <ACol :md="7" :xs="24">
- <Button block @click="setLoginState(LoginStateEnum.REGISTER)">
- {{ t('sys.login.registerButton') }}
- </Button>
- </ACol>
- </ARow> -->
- <!-- <Divider class="enter-x">{{ t('sys.login.otherSignIn') }}</Divider> -->
- <!-- <div class="flex justify-evenly enter-x" :class="`${prefixCls}-sign-in-way`">
- <GithubFilled />
- <WechatFilled />
- <AlipayCircleFilled />
- <GoogleCircleFilled />
- <TwitterCircleFilled />
- </div> -->
- </Form>
- </template>
- <script lang="ts" setup>
- import { reactive, ref, unref, computed } from 'vue';
- // Divider
- import { Checkbox, Form, Input, Row, Col, Button } from 'ant-design-vue';
- // import {
- // GithubFilled,
- // WechatFilled,
- // AlipayCircleFilled,
- // GoogleCircleFilled,
- // TwitterCircleFilled,
- // } from '@ant-design/icons-vue';
- import LoginFormTitle from './LoginFormTitle.vue';
- // import { BasicDragVerify } from '/@/components/Verify/index';
- import { useI18n } from '/@/hooks/web/useI18n';
- import { useMessage } from '/@/hooks/web/useMessage';
- import { useUserStore } from '/@/store/modules/user';
- import { LoginStateEnum, useLoginState, useFormRules, useFormValid } from './useLogin';
- import { useDesign } from '/@/hooks/web/useDesign';
- //import { onKeyStroke } from '@vueuse/core';
- const ACol = Col;
- const ARow = Row;
- const FormItem = Form.Item;
- const InputPassword = Input.Password;
- const { t } = useI18n();
- const { notification, createErrorModal } = useMessage();
- const { prefixCls } = useDesign('login');
- const userStore = useUserStore();
- const { setLoginState, getLoginState } = useLoginState();
- const { getFormRules } = useFormRules();
- const formRef = ref();
- const loading = ref(false);
- const rememberMe = ref(false);
- // const isDragValidate = ref(false);
- const formData = reactive({
- account: '17324327132',
- password: 'zfb123456',
- // password: encodeStr(window.btoa('zfb123456')),
- captcha: '',
- });
- const { validForm } = useFormValid(formRef);
- //onKeyStroke('Enter', handleLogin);
- const getShow = computed(() => unref(getLoginState) === LoginStateEnum.LOGIN);
- // function handleSuccess() {
- // // console.log('11');
- // isDragValidate.value = true;
- // }
- async function handleLogin() {
- const data = await validForm();
- if (!data) return;
- // if (!isDragValidate.value) {
- // notification.info({
- // message: t('sys.login.loginDragValidate'),
- // description: `${t('sys.login.loginAgain')}`,
- // duration: 3,
- // });
- // return;
- // }
- try {
- loading.value = true;
- const userInfo = await userStore.login({
- password: data.password,
- username: data.account,
- captcha: data.captcha,
- mode: 'none', //不要默认的错误提示
- });
- if (userInfo) {
- notification.success({
- message: t('sys.login.loginSuccessTitle'),
- description: `${t('sys.login.loginSuccessDesc')}: ${userInfo.realName}`,
- duration: 3,
- });
- }
- } catch (error) {
- createErrorModal({
- title: t('sys.api.errorTip'),
- content: (error as unknown as Error).message || t('sys.api.networkExceptionMsg'),
- getContainer: () => document.body.querySelector(`.${prefixCls}`) || document.body,
- });
- } finally {
- loading.value = false;
- }
- }
- </script>
- <style>
- .captcha {
- min-width: 80px !important;
- }
- .captcha-img {
- height: 40px;
- display: inline-block;
- }
- </style>
|