| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- <script setup>
- import { reactive, ref } from "vue";
- import loginApi from "@/api/login";
- import { useUserStore } from "@/store";
- import { useRouter, useRoute } from "vue-router";
- import packageJson from "../../package.json";
- import { useAppStore } from "@/store";
- const appStore = useAppStore();
- const router = useRouter();
- const route = useRoute();
- const captcha = ref(null);
- const loading = ref(false);
- let isDevelop = import.meta.env.VITE_APP_ENV === "development";
- var odata = isDevelop
- ? { username: "admin", password: "123456", code: "" }
- : { username: "", password: "", code: "" };
- const form = reactive(odata);
- const refreshCaptcha = () => {
- form.code = "";
- form.uuid = "";
- loginApi.getCaptch().then((res) => {
- if (res.code === 200) {
- captcha.value = res.data.image;
- form.uuid = res.data.uuid;
- }
- });
- };
- refreshCaptcha();
- const userStore = useUserStore();
- const redirect = route.query.redirect ? route.query.redirect : "/";
- const handleSubmit = async ({ values, errors }) => {
- if (loading.value) {
- return;
- }
- loading.value = true;
- if (!errors) {
- const result = await userStore.login(form);
- if (!result) {
- loading.value = false;
- refreshCaptcha();
- return;
- }
- router.push(redirect);
- }
- loading.value = false;
- };
- </script>
- <template>
- <div
- class="login-container"
- :style="{ background: appStore.mode === 'dark' ? '#2e2e30e3' : '' }"
- >
- <h3 class="login-logo">
- <!-- <img src="/logo.png" alt="logo" />
- <span>{{ $title }}</span> -->
- </h3>
- <div
- class="login-width md:w-10/12 w-11/12 mx-auto flex justify-between h-full items-center"
- >
- <div
- class="w-6/12 mx-auto left-panel rounded-l pl-5 pr-5 hidden md:block"
- >
- <div class="logo">
- <span>{{ $title }} v{{ packageJson.version }}</span>
- </div>
- <div class="slogan flex justify-end">
- <!-- <span>---- {{ $t('sys.login.slogan') }}</span> -->
- </div>
- </div>
- <div class="md:w-6/12 w-11/12 md:rounded-r mx-auto pl-5 pr-5 pb-10">
- <h2 class="mt-10 text-3xl pb-0 mb-10 login-title">
- {{ $t("sys.login.title") }}
- </h2>
- <a-form :model="form" @submit="handleSubmit">
- <a-form-item
- field="username"
- :hide-label="true"
- :rules="[
- { required: true, message: $t('sys.login.usernameNotice') },
- ]"
- >
- <a-input
- v-model="form.username"
- class="w-full"
- size="large"
- :placeholder="$t('sys.login.username')"
- allow-clear
- >
- <template #prefix><icon-user /></template>
- </a-input>
- </a-form-item>
- <a-form-item
- field="password"
- :hide-label="true"
- :rules="[
- { required: true, message: $t('sys.login.passwordNotice') },
- ]"
- >
- <a-input-password
- v-model="form.password"
- :placeholder="$t('sys.login.password')"
- size="large"
- allow-clear
- >
- <template #prefix><icon-lock /></template>
- </a-input-password>
- </a-form-item>
- <a-form-item
- field="code"
- :hide-label="true"
- :rules="[
- {
- required: true,
- match: /^[a-zA-Z0-9]{4}$/,
- message: $t('sys.login.verifyCodeNotice'),
- },
- ]"
- >
- <a-input
- v-model="form.code"
- :placeholder="$t('sys.login.verifyCode')"
- size="large"
- allow-clear
- >
- <template #prefix><icon-safe /></template>
- <template #append>
- <img
- :src="captcha"
- style="height: 120px; height: 36px; cursor: pointer"
- @click="refreshCaptcha"
- />
- </template>
- </a-input>
- </a-form-item>
- <a-form-item :hide-label="true" class="mt-5">
- <a-button
- html-type="submit"
- type="primary"
- long
- size="large"
- :loading="loading"
- >
- {{ $t("sys.login.loginBtn") }}
- </a-button>
- </a-form-item>
- <!-- <a-divider orientation="center">{{
- $t("sys.login.otherLoginType")
- }}</a-divider>
- <div class="flex w-3/4 pt-2 mx-auto items-stretch justify-around">
- <a-avatar class="other-login wechat"><icon-wechat /></a-avatar>
- <a-avatar class="other-login alipay"
- ><icon-alipay-circle
- /></a-avatar>
- <a-avatar class="other-login qq"><icon-qq /></a-avatar>
- <a-avatar class="other-login weibo"><icon-weibo /></a-avatar>
- </div> -->
- </a-form>
- </div>
- </div>
- <div class="login-bg">
- <div class="fly bg-fly-circle1"></div>
- <div class="fly bg-fly-circle2"></div>
- <div class="fly bg-fly-circle3"></div>
- <div class="fly bg-fly-circle4"></div>
- </div>
- </div>
- </template>
- <style scoped lang="less">
- .login-container {
- width: 100%;
- height: 100%;
- position: absolute;
- background: rgb(145 185 233 / 50%);
- background-size: cover;
- z-index: 3;
- .login-logo {
- width: 100%;
- height: 80px;
- font-weight: 700;
- font-size: 20px;
- line-height: 32px;
- display: flex;
- padding: 0 20px;
- align-items: center;
- color: var(--color-text-1);
- img {
- width: 45px;
- height: 45px;
- margin-right: 10px;
- }
- }
- .login-width {
- max-width: 950px;
- background-color: var(--color-bg-3);
- padding: 10px;
- height: 500px;
- position: relative;
- top: 40%;
- margin-top: -255px;
- border-radius: 10px;
- z-index: 999;
- box-shadow: 0 2px 4px 2px #00000014;
- }
- .left-panel {
- height: 491px;
- background-image: url(@/assets/login_picture.svg);
- background-repeat: no-repeat;
- background-position: center 60px;
- background-size: contain;
- }
- .logo {
- display: flex;
- margin-top: 20px;
- color: #333;
- span {
- font-size: 28px;
- margin-left: 15px;
- color: rgb(var(--primary-6));
- }
- }
- .slogan {
- font-size: 16px;
- line-height: 50px;
- color: var(--color-text-1);
- }
- .login-title {
- color: var(--color-text-1);
- }
- :deep(.arco-input-append) {
- padding: 0 !important;
- }
- .other-login {
- cursor: pointer;
- }
- .qq:hover,
- .alipay:hover {
- background: #165dff;
- }
- .wechat:hover {
- background: #0f9c02;
- }
- .weibo:hover {
- background: #f3ce2b;
- }
- }
- .login-bg {
- width: 100%;
- overflow: hidden;
- z-index: 1;
- }
- .fly {
- pointer-events: none;
- position: fixed;
- z-index: 9999;
- }
- .bg-fly-circle1 {
- left: 40px;
- top: 100px;
- width: 100px;
- height: 100px;
- border-radius: 50%;
- background: linear-gradient(
- to right,
- rgba(var(--primary-6), 0.07),
- rgba(var(--primary-6), 0.04)
- );
- animation: move-ce64e0ea 2.5s linear infinite;
- }
- .bg-fly-circle2 {
- left: 15%;
- bottom: 5%;
- width: 150px;
- height: 150px;
- border-radius: 50%;
- background: linear-gradient(
- to right,
- rgba(var(--primary-6), 0.08),
- rgba(var(--primary-6), 0.04)
- );
- animation: move-ce64e0ea 3s linear infinite;
- }
- .bg-fly-circle3 {
- right: 12%;
- top: 90px;
- width: 145px;
- height: 145px;
- border-radius: 50%;
- background: linear-gradient(
- to right,
- rgba(var(--primary-6), 0.1),
- rgba(var(--primary-6), 0.04)
- );
- animation: move-ce64e0ea 2.5s linear infinite;
- }
- .bg-fly-circle4 {
- right: 5%;
- top: 60%;
- width: 160px;
- height: 160px;
- border-radius: 50%;
- background: linear-gradient(
- to right,
- rgba(var(--primary-6), 0.02),
- rgba(var(--primary-6), 0.04)
- );
- animation: move-ce64e0ea 3.5s linear infinite;
- }
- @keyframes move-ce64e0ea {
- 0% {
- transform: translateY(0) scale(1);
- }
- 50% {
- transform: translateY(25px) scale(1.1);
- }
- to {
- transform: translateY(0) scale(1);
- }
- }
- </style>
|