登录页页面更换

This commit is contained in:
JenniferW 2025-12-10 17:21:32 +08:00
parent 742cb4ce18
commit a41214b490
5 changed files with 421 additions and 107 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

View File

@ -1,65 +1,111 @@
<template>
<div class="login">
<el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
<h3 class="title">{{ title }}</h3>
<el-form-item prop="username">
<el-input
v-model="loginForm.username"
type="text"
size="large"
auto-complete="off"
placeholder="账号"
<div class="login-container">
<!-- 左侧插图区域 -->
<div class="login-left">
<img
src="../assets/images/login-box-bg.svg"
alt="登录插图"
class="login-illustration"
/>
</div>
<!-- 右侧登录表单区域 -->
<div class="login-right">
<el-form
ref="loginRef"
:model="loginForm"
:rules="loginRules"
class="login-form"
>
<template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template>
</el-input>
</el-form-item>
<el-form-item prop="password">
<el-input
v-model="loginForm.password"
type="password"
size="large"
auto-complete="off"
placeholder="密码"
@keyup.enter="handleLogin"
>
<template #prefix><svg-icon icon-class="password" class="el-input__icon input-icon" /></template>
</el-input>
</el-form-item>
<el-form-item prop="code" v-if="captchaEnabled">
<el-input
v-model="loginForm.code"
size="large"
auto-complete="off"
placeholder="验证码"
style="width: 63%"
@keyup.enter="handleLogin"
>
<template #prefix><svg-icon icon-class="validCode" class="el-input__icon input-icon" /></template>
</el-input>
<div class="login-code">
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
</div>
</el-form-item>
<el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>
<el-form-item style="width:100%;">
<el-button
:loading="loading"
size="large"
type="primary"
style="width:100%;"
@click.prevent="handleLogin"
>
<span v-if="!loading"> </span>
<span v-else> 中...</span>
</el-button>
<div style="float: right;" v-if="register">
<router-link class="link-type" :to="'/register'">立即注册</router-link>
</div>
</el-form-item>
</el-form>
<h3 class="title">{{ title }}</h3>
<el-form-item prop="username">
<el-input
v-model="loginForm.username"
type="text"
size="large"
auto-complete="off"
placeholder="admin"
>
<template #prefix
><svg-icon icon-class="user" class="el-input__icon input-icon"
/></template>
</el-input>
</el-form-item>
<el-form-item prop="password">
<el-input
v-model="loginForm.password"
:type="showPassword ? 'text' : 'password'"
size="large"
auto-complete="off"
placeholder="密码"
@keyup.enter="handleLogin"
>
<template #prefix
><svg-icon
icon-class="password"
class="el-input__icon input-icon"
/></template>
<template #suffix>
<el-icon
class="password-eye-icon"
@click="togglePasswordVisibility"
style="cursor: pointer"
>
<View v-if="!showPassword" />
<Hide v-else />
</el-icon>
</template>
</el-input>
</el-form-item>
<el-form-item prop="code" v-if="captchaEnabled">
<el-input
v-model="loginForm.code"
size="large"
auto-complete="off"
placeholder="验证码"
style="width: 63%"
@keyup.enter="handleLogin"
>
<template #prefix
><svg-icon
icon-class="validCode"
class="el-input__icon input-icon"
/></template>
</el-input>
<div class="login-code">
<img :src="codeUrl" @click="getCode" class="login-code-img" />
</div>
</el-form-item>
<el-checkbox
v-model="loginForm.rememberMe"
style="margin: 0px 0px 25px 0px"
>记住密码</el-checkbox
>
<el-form-item style="width: 100%">
<el-button
:loading="loading"
size="large"
type="primary"
style="width: 100%"
@click.prevent="handleLogin"
>
<span v-if="!loading"> </span>
<span v-else> 中...</span>
</el-button>
<div style="float: right" v-if="register">
<router-link class="link-type" :to="'/register'"
>立即注册</router-link
>
</div>
</el-form-item>
</el-form>
</div>
</div>
<!-- 底部 -->
<div class="el-login-footer">
<span>Copyright © 2018-2025 guoan All Rights Reserved.</span>
<span>Copyright © 2015-2023</span>
</div>
</div>
</template>
@ -68,7 +114,8 @@
import { getCodeImg } from "@/api/login";
import Cookies from "js-cookie";
import { encrypt, decrypt } from "@/utils/jsencrypt";
import useUserStore from '@/store/modules/user'
import useUserStore from "@/store/modules/user";
import { View, Hide } from "@element-plus/icons-vue";
const title = import.meta.env.VITE_APP_TITLE;
const userStore = useUserStore();
@ -81,7 +128,7 @@ const loginForm = ref({
password: "admin123",
rememberMe: false,
code: "",
uuid: ""
uuid: "",
});
const codeUrl = ref("");
@ -91,31 +138,41 @@ const captchaEnabled = ref(true);
//
const register = ref(false);
const redirect = ref(undefined);
// /
const showPassword = ref(false);
//
const loginRules = computed(() => {
const rules = {
username: [{ required: true, trigger: "blur", message: "请输入您的账号" }],
password: [{ required: true, trigger: "blur", message: "请输入您的密码" }]
password: [{ required: true, trigger: "blur", message: "请输入您的密码" }],
};
if (captchaEnabled.value) {
rules.code = [{ required: true, trigger: "change", message: "请输入验证码" }];
rules.code = [
{ required: true, trigger: "change", message: "请输入验证码" },
];
}
return rules;
});
watch(route, (newRoute) => {
watch(
route,
(newRoute) => {
redirect.value = newRoute.query && newRoute.query.redirect;
}, { immediate: true });
},
{ immediate: true }
);
function handleLogin() {
proxy.$refs.loginRef.validate(valid => {
proxy.$refs.loginRef.validate((valid) => {
if (valid) {
loading.value = true;
// cookie
if (loginForm.value.rememberMe) {
Cookies.set("username", loginForm.value.username, { expires: 30 });
Cookies.set("password", encrypt(loginForm.value.password), { expires: 30 });
Cookies.set("password", encrypt(loginForm.value.password), {
expires: 30,
});
Cookies.set("rememberMe", loginForm.value.rememberMe, { expires: 30 });
} else {
//
@ -124,29 +181,33 @@ function handleLogin() {
Cookies.remove("rememberMe");
}
// action
userStore.login(loginForm.value).then(() => {
const query = route.query;
const otherQueryParams = Object.keys(query).reduce((acc, cur) => {
if (cur !== "redirect") {
acc[cur] = query[cur];
userStore
.login(loginForm.value)
.then(() => {
const query = route.query;
const otherQueryParams = Object.keys(query).reduce((acc, cur) => {
if (cur !== "redirect") {
acc[cur] = query[cur];
}
return acc;
}, {});
router.push({ path: redirect.value || "/", query: otherQueryParams });
})
.catch(() => {
loading.value = false;
//
if (captchaEnabled.value) {
getCode();
}
return acc;
}, {});
router.push({ path: redirect.value || "/", query: otherQueryParams });
}).catch(() => {
loading.value = false;
//
if (captchaEnabled.value) {
getCode();
}
});
});
}
});
}
function getCode() {
getCodeImg().then(res => {
captchaEnabled.value = res.captchaEnabled === undefined ? true : res.captchaEnabled;
getCodeImg().then((res) => {
captchaEnabled.value =
res.captchaEnabled === undefined ? true : res.captchaEnabled;
if (captchaEnabled.value) {
codeUrl.value = "data:image/gif;base64," + res.img;
loginForm.value.uuid = res.uuid;
@ -160,11 +221,16 @@ function getCookie() {
const rememberMe = Cookies.get("rememberMe");
loginForm.value = {
username: username === undefined ? loginForm.value.username : username,
password: password === undefined ? loginForm.value.password : decrypt(password),
rememberMe: rememberMe === undefined ? false : Boolean(rememberMe)
password:
password === undefined ? loginForm.value.password : decrypt(password),
rememberMe: rememberMe === undefined ? false : Boolean(rememberMe),
};
}
function togglePasswordVisibility() {
showPassword.value = !showPassword.value;
}
getCode();
getCookie();
</script>
@ -172,49 +238,232 @@ getCookie();
<style lang='scss' scoped>
.login {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
background-image: url("../assets/images/login-background.jpg");
background-size: cover;
min-height: 100vh;
background: linear-gradient(135deg, #e3f2f5 0%, #d0e8eb 50%, #c5e3e6 100%);
position: relative;
padding: 0;
overflow: hidden;
// -
&::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 45%;
height: 280px;
min-height: 220px;
background-image: url("../assets/images/logo_left.png");
background-repeat: no-repeat;
background-position: left bottom;
background-size: contain;
opacity: 0.5;
z-index: 0;
pointer-events: none;
filter: blur(0.5px);
}
// -
&::after {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 45%;
height: 280px;
min-height: 220px;
background-image: url("../assets/images/logo_leftright.png");
background-repeat: no-repeat;
background-position: right bottom;
background-size: contain;
opacity: 0.5;
z-index: 0;
pointer-events: none;
filter: blur(0.5px);
}
}
.login-container {
display: flex;
width: 100%;
max-width: 1400px;
height: 100vh;
position: relative;
z-index: 1;
}
.login-left {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 60px 40px;
position: relative;
.login-illustration {
width: 100%;
max-width: 650px;
height: auto;
object-fit: contain;
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}
}
.login-right {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 60px;
position: relative;
}
.title {
margin: 0px auto 30px auto;
margin: 0px auto 35px auto;
text-align: center;
color: #707070;
color: #333;
font-size: 20px;
font-weight: 600;
letter-spacing: 0.5px;
line-height: 1.4;
}
.login-form {
border-radius: 6px;
border-radius: 16px;
background: #ffffff;
width: 400px;
padding: 25px 25px 5px 25px;
.el-input {
height: 40px;
input {
height: 40px;
width: 100%;
max-width: 420px;
padding: 45px 38px 38px 38px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
:deep(.el-form-item) {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
:deep(.el-input__wrapper) {
border-radius: 8px;
box-shadow: 0 0 0 1px #dcdfe6 inset;
transition: all 0.3s;
&:hover {
box-shadow: 0 0 0 1px #c0c4cc inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #409eff inset;
}
}
:deep(.el-input__inner) {
font-size: 15px;
color: #333;
&::placeholder {
color: #a8abb2;
font-size: 14px;
}
}
.el-input {
height: 48px;
input {
height: 48px;
line-height: 48px;
}
}
.input-icon {
height: 39px;
width: 14px;
height: 48px;
width: 16px;
margin-left: 0px;
color: #909399;
}
.password-eye-icon {
color: #909399;
font-size: 18px;
transition: color 0.2s;
cursor: pointer;
&:hover {
color: #409eff;
}
}
:deep(.el-button--primary) {
background-color: #20b2aa;
border-color: #20b2aa;
height: 48px;
font-size: 16px;
font-weight: 500;
letter-spacing: 2px;
border-radius: 8px;
transition: all 0.3s;
&:hover {
background-color: #1a9b94;
border-color: #1a9b94;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}
&:active {
transform: translateY(0);
}
}
:deep(.el-checkbox) {
margin-bottom: 20px;
.el-checkbox__label {
color: #666;
font-size: 14px;
padding-left: 8px;
}
.el-checkbox__input.is-checked .el-checkbox__inner {
background-color: #20b2aa;
border-color: #20b2aa;
}
}
}
.login-tip {
font-size: 13px;
text-align: center;
color: #bfbfbf;
}
.login-code {
width: 33%;
height: 40px;
height: 48px;
float: right;
display: flex;
align-items: center;
justify-content: center;
img {
cursor: pointer;
vertical-align: middle;
height: 48px;
border-radius: 8px;
border: 1px solid #dcdfe6;
transition: all 0.2s;
&:hover {
border-color: #409eff;
}
}
}
.el-login-footer {
height: 40px;
line-height: 40px;
@ -222,13 +471,78 @@ getCookie();
bottom: 0;
width: 100%;
text-align: center;
color: #fff;
font-family: Arial;
color: #999;
font-family: Arial, sans-serif;
font-size: 12px;
letter-spacing: 1px;
letter-spacing: 0.5px;
z-index: 10;
background: transparent;
pointer-events: none;
span {
display: inline-block;
opacity: 0.8;
}
}
.login-code-img {
height: 40px;
padding-left: 12px;
height: 48px;
padding-left: 0;
width: 100%;
object-fit: contain;
}
//
@media (max-width: 1024px) {
.login-container {
flex-direction: column;
}
.login-left {
flex: 0 0 auto;
padding: 30px 20px;
max-height: 40vh;
.login-illustration {
max-width: 400px;
}
}
.login-right {
flex: 1;
padding: 30px 20px;
}
.login {
&::before,
&::after {
height: 180px;
opacity: 0.3;
}
}
}
@media (max-width: 768px) {
.login-left {
display: none;
}
.login-right {
width: 100%;
padding: 30px 20px;
}
.login-form {
padding: 35px 28px 28px 28px;
max-width: 100%;
}
.login {
&::before,
&::after {
height: 150px;
opacity: 0.25;
}
}
}
</style>

View File

@ -422,7 +422,6 @@ import {
compare,
} from "@/api/order";
import { ElMessage, ElEmpty, ElDialog } from "element-plus";
import { Search, RefreshLeft, Microphone } from "@element-plus/icons-vue";
const { proxy } = getCurrentInstance();
const { display_field } = proxy.useDict("display_field");
@ -613,7 +612,7 @@ const onHeaderDrop = (targetIndex) => {
const compareTableData = ref([]);
const diffFieldKeys = ref(new Set());
const getItemKey = (item) => item?.id ?? item?.partNumber ?? item?.uuid ?? "";
const getItemKey = (item) => item?.id ?? item?.uuid ?? item?.partNumber ?? "";
const getDictLabel = (dictRef, value) => {
if (!dictRef) return null;
@ -1537,7 +1536,7 @@ const fetchDifferenceRecommendations = async () => {
const fetchCompareTable = async () => {
const idList = selectedCompareList.value
.map((item) => item.id || item.partNumber)
.map((item) => item.uuid || item.partNumber)
.filter(Boolean);
const ids = idList.join(",");
if (!ids) {