| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- <script setup lang="ts">
- import { useI18n } from "vue-i18n";
- import Motion from "./utils/motion";
- import { useRouter } from "vue-router";
- import { message } from "@/utils/message";
- import { loginRules } from "./utils/rule";
- import TypeIt from "@/components/ReTypeit";
- import { debounce } from "@pureadmin/utils";
- import { useNav } from "@/layout/hooks/useNav";
- import { useEventListener } from "@vueuse/core";
- import type { FormInstance } from "element-plus";
- import { $t, transformI18n } from "@/plugins/i18n";
- import { operates, thirdParty } from "./utils/enums";
- import { useLayout } from "@/layout/hooks/useLayout";
- import LoginPhone from "./components/LoginPhone.vue";
- import LoginRegist from "./components/LoginRegist.vue";
- import LoginUpdate from "./components/LoginUpdate.vue";
- import LoginQrCode from "./components/LoginQrCode.vue";
- import { useUserStoreHook } from "@/store/modules/user";
- import { initRouter, getTopMenu } from "@/router/utils";
- import { bg, avatar, illustration } from "./utils/static";
- import { ReImageVerify } from "@/components/ReImageVerify";
- import { ref, toRaw, reactive, watch, computed, onMounted } from "vue";
- import { useRenderIcon } from "@/components/ReIcon/src/hooks";
- import { useTranslationLang } from "@/layout/hooks/useTranslationLang";
- import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
- import dayIcon from "@/assets/svg/day.svg?component";
- import darkIcon from "@/assets/svg/dark.svg?component";
- import globalization from "@/assets/svg/globalization.svg?component";
- import Lock from "~icons/ri/lock-fill";
- import Check from "~icons/ep/check";
- import User from "~icons/ri/user-3-fill";
- import Info from "~icons/ri/information-line";
- import Keyhole from "~icons/ri/shield-keyhole-line";
- import { fetchSysCfg } from "@/api/system";
- import { ElNotification } from "element-plus";
- defineOptions({
- name: "Login"
- });
- const imgCode = ref("");
- const loginDay = ref(7);
- const router = useRouter();
- const loading = ref(false);
- const checked = ref(false);
- const disabled = ref(false);
- const ruleFormRef = ref<FormInstance>();
- const currentPage = computed(() => {
- return useUserStoreHook().currentPage;
- });
- const { t } = useI18n();
- const { initStorage } = useLayout();
- initStorage();
- const { dataTheme, overallStyle, dataThemeChange } = useDataThemeChange();
- dataThemeChange(overallStyle.value);
- const { title, getDropdownItemStyle, getDropdownItemClass } = useNav();
- const { locale, translationCh, translationEn } = useTranslationLang();
- const ruleForm = reactive({
- username: "root",
- password: "zaq123!@#",
- verifyCode: ""
- });
- const vGlobal = window.vueGlobal;
- const tiId = ref(0);
- onMounted(() => {
- // 组件挂载后执行的逻辑
- fetchSysCfg({})
- .then(response => {
- console.log("系统配置项:", response);
- if (response.success) {
- vGlobal.sysCfg.init(response.dict);
- vGlobal.applySysCfg(true);
- tiId.value = tiId.value + 1;
- } else {
- ElNotification.error({
- message: t("login.loadConfigFail")
- });
- }
- })
- .catch(error => {
- console.error("配置加载失败", error);
- ElNotification.error({
- message: t("login.networkError")
- });
- });
- });
- const webTitle = computed(() => {
- return vGlobal.sysCfg.sysCfgView.title;
- });
- const onLogin = async (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- await formEl.validate(valid => {
- if (valid) {
- loading.value = true;
- useUserStoreHook()
- .loginByUsername({
- username: ruleForm.username,
- password: ruleForm.password
- })
- .then(res => {
- if (res.success) {
- // 获取后端路由
- return initRouter().then(() => {
- disabled.value = true;
- router
- .push(getTopMenu(true).path)
- .then(() => {
- // message(t("login.pureLoginSuccess"), { type: "success" });
- ElNotification.success({
- message: t("login.pureLoginSuccess")
- });
- })
- .finally(() => (disabled.value = false));
- });
- } else {
- ElNotification.error({
- message: t("login.pureLoginFail") + ":" + t(`login.${res.error}`)
- });
- // message(t("login.pureLoginFail"), { type: "error" });
- }
- })
- .finally(() => (loading.value = false));
- }
- });
- };
- const immediateDebounce: any = debounce(
- formRef => onLogin(formRef),
- 1000,
- true
- );
- useEventListener(document, "keydown", ({ code }) => {
- if (
- ["Enter", "NumpadEnter"].includes(code) &&
- !disabled.value &&
- !loading.value
- )
- immediateDebounce(ruleFormRef.value);
- });
- watch(imgCode, value => {
- useUserStoreHook().SET_VERIFYCODE(value);
- });
- watch(checked, bool => {
- useUserStoreHook().SET_ISREMEMBERED(bool);
- });
- watch(loginDay, value => {
- useUserStoreHook().SET_LOGINDAY(value);
- });
- </script>
- <template>
- <div class="select-none">
- <img :src="bg" class="wave" />
- <div class="flex-c absolute right-5 top-3 custom-position">
- <!-- 主题 -->
- <el-switch
- v-model="dataTheme"
- inline-prompt
- :active-icon="dayIcon"
- :inactive-icon="darkIcon"
- @change="dataThemeChange"
- />
- <!-- 国际化 -->
- <!-- <el-dropdown trigger="click">
- <globalization
- class="hover:text-primary hover:bg-[transparent]! w-[20px] h-[20px] ml-1.5 cursor-pointer outline-hidden duration-300"
- />
- <template #dropdown>
- <el-dropdown-menu class="translation">
- <el-dropdown-item
- :style="getDropdownItemStyle(locale, 'zh')"
- :class="['dark:text-white!', getDropdownItemClass(locale, 'zh')]"
- @click="translationCh"
- >
- <IconifyIconOffline
- v-show="locale === 'zh'"
- class="check-zh"
- :icon="Check"
- />
- 简体中文
- </el-dropdown-item>
- <el-dropdown-item
- :style="getDropdownItemStyle(locale, 'en')"
- :class="['dark:text-white!', getDropdownItemClass(locale, 'en')]"
- @click="translationEn"
- >
- <span v-show="locale === 'en'" class="check-en">
- <IconifyIconOffline :icon="Check" />
- </span>
- English
- </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown> -->
- </div>
- <div class="login-container">
- <div class="img">
- <component :is="toRaw(illustration)" />
- </div>
- <div class="login-box">
- <div class="login-form">
- <avatar class="avatar" />
- <Motion :tiId="tiId">
- <h2 class="outline-hidden">
- {{ vGlobal.sysCfg.sysCfgView.webTitle }}
- <!-- <TypeIt
- :tiId="tiId"
- :options="{ strings: [vGlobal.sysCfg.sysCfgView.webTitle], cursor: false, speed: 100 }"
- /> -->
- </h2>
- </Motion>
- <el-form
- v-if="currentPage === 0"
- ref="ruleFormRef"
- :model="ruleForm"
- :rules="loginRules"
- size="large"
- >
- <Motion :delay="100">
- <el-form-item
- :rules="[
- {
- required: true,
- message: transformI18n($t('login.pureUsernameReg')),
- trigger: 'blur'
- }
- ]"
- prop="username"
- >
- <el-input
- v-model="ruleForm.username"
- clearable
- :placeholder="t('login.pureUsername')"
- :prefix-icon="useRenderIcon(User)"
- />
- </el-form-item>
- </Motion>
- <Motion :delay="150">
- <el-form-item prop="password">
- <el-input
- v-model="ruleForm.password"
- clearable
- show-password
- :placeholder="t('login.purePassword')"
- :prefix-icon="useRenderIcon(Lock)"
- />
- </el-form-item>
- </Motion>
- <Motion :delay="200">
- <el-form-item prop="verifyCode">
- <el-input
- v-model="ruleForm.verifyCode"
- clearable
- :placeholder="t('login.pureVerifyCode')"
- :prefix-icon="useRenderIcon(Keyhole)"
- >
- <template v-slot:append>
- <ReImageVerify v-model:code="imgCode" />
- </template>
- </el-input>
- </el-form-item>
- </Motion>
- <Motion :delay="250">
- <el-form-item>
- <div
- class="w-full h-[20px] flex justify-between items-center custom-flex-container"
- >
- <el-checkbox v-model="checked">
- <span class="flex">
- <select
- v-model="loginDay"
- :style="{
- width: loginDay < 10 ? '10px' : '16px',
- outline: 'none',
- background: 'none',
- '-webkit-appearance': 'none',
- appearance: 'none',
- border: 'none'
- }"
- >
- <option value="1">1</option>
- <option value="7">7</option>
- <option value="30">30</option>
- </select>
- {{ t("login.pureRemember") }}
- <IconifyIconOffline
- v-tippy="{
- content: t('login.pureRememberInfo'),
- placement: 'top'
- }"
- :icon="Info"
- class="ml-1"
- />
- </span>
- </el-checkbox>
- <el-button
- link
- type="primary"
- @click="useUserStoreHook().SET_CURRENTPAGE(4)"
- >
- {{ t("login.pureForget") }}
- </el-button>
- </div>
- <el-button
- class="w-full mt-4"
- size="default"
- type="primary"
- :loading="loading"
- :disabled="disabled"
- @click="onLogin(ruleFormRef)"
- >
- {{ t("login.pureLogin") }}
- </el-button>
- </el-form-item>
- </Motion>
- <!-- <Motion :delay="300">
- <el-form-item>
- <div class="w-full h-[20px] flex justify-between items-center">
- <el-button
- v-for="(item, index) in operates"
- :key="index"
- class="w-full mt-4"
- size="default"
- @click="useUserStoreHook().SET_CURRENTPAGE(index + 1)"
- >
- {{ t(item.title) }}
- </el-button>
- </div>
- </el-form-item>
- </Motion> -->
- </el-form>
- <!-- <Motion v-if="currentPage === 0" :delay="350">
- <el-form-item>
- <el-divider>
- <p class="text-gray-500 text-xs">
- {{ t("login.pureThirdLogin") }}
- </p>
- </el-divider>
- <div class="w-full flex justify-evenly">
- <span
- v-for="(item, index) in thirdParty"
- :key="index"
- :title="t(item.title)"
- >
- <IconifyIconOnline
- :icon="`ri:${item.icon}-fill`"
- width="20"
- class="cursor-pointer text-gray-500 hover:text-blue-400"
- />
- </span>
- </div>
- </el-form-item>
- </Motion> -->
- <!-- 手机号登录 -->
- <!-- <LoginPhone v-if="currentPage === 1" /> -->
- <!-- 二维码登录 -->
- <!-- <LoginQrCode v-if="currentPage === 2" /> -->
- <!-- 注册 -->
- <!-- <LoginRegist v-if="currentPage === 3" /> -->
- <!-- 忘记密码 -->
- <!-- <LoginUpdate v-if="currentPage === 4" /> -->
- </div>
- </div>
- </div>
- <div
- class="w-full flex-c absolute bottom-3 text-sm text-[rgba(0,0,0,0.6)] dark:text-[rgba(220,220,242,0.8)]"
- >
- Copyright © 2020-present
- </div>
- </div>
- </template>
- <style scoped>
- @import url("@/style/login.css");
- </style>
- <style lang="scss" scoped>
- :deep(.el-input-group__append, .el-input-group__prepend) {
- padding: 0;
- }
- .translation {
- :deep(.el-dropdown-menu__item) {
- padding: 5px 40px;
- }
- .check-zh {
- position: absolute;
- left: 20px;
- }
- .check-en {
- position: absolute;
- left: 20px;
- }
- }
- .custom-position {
- right: 1.25rem; /* 等价于 right-5 */
- top: 0.75rem; /* 等价于 top-3 */
- }
- .flex-c {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .select-none {
- position: relative; /* 确保子元素 absolute 定位以此为基准 */
- }
- .absolute {
- position: absolute; /* 脱离文档流,基于最近的定位父元素偏移 */
- }
- /* 替代原工具类组合:w-full h-[20px] flex justify-between items-center */
- .custom-flex-container {
- /* w-full:宽度占满父容器 */
- width: 100%;
- /* h-[20px]:固定高度20px */
- height: 20px;
- /* flex:启用flex布局 */
- display: -webkit-box; /* 兼容旧版WebKit浏览器 */
- display: -ms-flexbox; /* 兼容旧版IE */
- display: flex;
- /* justify-between:子元素水平方向两端对齐 */
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- /* items-center:子元素垂直方向居中对齐 */
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
- .flex {
- display: flex;
- }
- .w-full {
- /* w-full:宽度为父容器的 100% */
- width: 100%;
- }
- .mt-4 {
- /* mt-4:上外边距,Tailwind 中 1 单位 = 0.25rem,4 单位即 1rem(16px,默认根字体大小下) */
- margin-top: 1rem;
- }
- .ml-1-custom {
- /* Tailwind 中 1 单位 = 0.25rem,ml-1 即左外边距为 0.25rem */
- margin-left: 0.25rem;
- }
- .bottom-3 {
- /* bottom-3:Tailwind 中 1 单位 = 0.25rem,3 单位即 0.75rem */
- bottom: 0.75rem;
- }
- .text-sm {
- /* text-sm:Tailwind 默认字体大小为 0.875rem(14px,基于 1rem=16px 计算) */
- font-size: 0.875rem;
- }
- </style>
|