mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-04 07:27:41 +08:00
108 lines
2.9 KiB
Vue
108 lines
2.9 KiB
Vue
<script setup lang="ts">
|
|
import { useI18n } from "vue-i18n";
|
|
import { ref, reactive } from "vue";
|
|
import Motion from "../utils/motion";
|
|
import { message } from "@/utils/message";
|
|
import { phoneRules } from "../utils/rule";
|
|
import type { FormInstance } from "element-plus";
|
|
import { $t, transformI18n } from "@/plugins/i18n";
|
|
import { useVerifyCode } from "../utils/verifyCode";
|
|
import { useUserStoreHook } from "@/store/modules/user";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
import Iphone from "~icons/ep/iphone";
|
|
import Keyhole from "~icons/ri/shield-keyhole-line";
|
|
|
|
const { t } = useI18n();
|
|
const loading = ref(false);
|
|
const ruleForm = reactive({
|
|
phone: "",
|
|
verifyCode: ""
|
|
});
|
|
const ruleFormRef = ref<FormInstance>();
|
|
const { isDisabled, text } = useVerifyCode();
|
|
|
|
const onLogin = async (formEl: FormInstance | undefined) => {
|
|
loading.value = true;
|
|
if (!formEl) return;
|
|
await formEl.validate(valid => {
|
|
if (valid) {
|
|
// 模拟登录请求,需根据实际开发进行修改
|
|
setTimeout(() => {
|
|
message(transformI18n($t("login.pureLoginSuccess")), {
|
|
type: "success"
|
|
});
|
|
loading.value = false;
|
|
}, 2000);
|
|
} else {
|
|
loading.value = false;
|
|
}
|
|
});
|
|
};
|
|
|
|
function onBack() {
|
|
useVerifyCode().end();
|
|
useUserStoreHook().SET_CURRENTPAGE(0);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<el-form ref="ruleFormRef" :model="ruleForm" :rules="phoneRules" size="large">
|
|
<Motion>
|
|
<el-form-item prop="phone">
|
|
<el-input
|
|
v-model="ruleForm.phone"
|
|
clearable
|
|
:placeholder="t('login.purePhone')"
|
|
:prefix-icon="useRenderIcon(Iphone)"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="100">
|
|
<el-form-item prop="verifyCode">
|
|
<div class="w-full flex justify-between">
|
|
<el-input
|
|
v-model="ruleForm.verifyCode"
|
|
clearable
|
|
:placeholder="t('login.pureSmsVerifyCode')"
|
|
:prefix-icon="useRenderIcon(Keyhole)"
|
|
/>
|
|
<el-button
|
|
:disabled="isDisabled"
|
|
class="ml-2!"
|
|
@click="useVerifyCode().start(ruleFormRef, 'phone')"
|
|
>
|
|
{{
|
|
text.length > 0
|
|
? text + t("login.pureInfo")
|
|
: t("login.pureGetVerifyCode")
|
|
}}
|
|
</el-button>
|
|
</div>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="150">
|
|
<el-form-item>
|
|
<el-button
|
|
class="w-full"
|
|
size="default"
|
|
type="primary"
|
|
:loading="loading"
|
|
@click="onLogin(ruleFormRef)"
|
|
>
|
|
{{ t("login.pureLogin") }}
|
|
</el-button>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="200">
|
|
<el-form-item>
|
|
<el-button class="w-full" size="default" @click="onBack">
|
|
{{ t("login.pureBack") }}
|
|
</el-button>
|
|
</el-form-item>
|
|
</Motion>
|
|
</el-form>
|
|
</template>
|