From 9cad6a832c786989be620573b09badccfe7e3b51 Mon Sep 17 00:00:00 2001 From: QYF-GitLab1 <1940665526@qq.com> Date: 星期一, 25 八月 2025 15:11:37 +0800 Subject: [PATCH] 首页头部,样式调整 --- src/layout/components/login.vue | 27 ++++++--------------------- 1 files changed, 6 insertions(+), 21 deletions(-) diff --git a/src/layout/components/login.vue b/src/layout/components/login.vue index f7bb65d..8b561e7 100644 --- a/src/layout/components/login.vue +++ b/src/layout/components/login.vue @@ -223,11 +223,6 @@ }) } -watchEffect(() => { - if (dialogFormVisible.value) { - } -}) - //鐧诲綍 const loginBtn = () => { @@ -309,7 +304,12 @@ }) } } - router.go(0) + if (localStorage.getItem('loginBack')) { + window.location.href = localStorage.getItem('loginBack') + localStorage.removeItem('loginBack') + } else { + router.go(0) + } }) } @@ -813,20 +813,5 @@ .selectPhone { background: #fff; -} - -::v-deep(.el-select) { - width: 100px; - height: 30px; - color: red; - border: none !important; - - ::v-deep(.select-trigger) { - height: 100%; - .el-input--suffix { - height: 100%; - background-color: #fff; - } - } } </style> -- Gitblit v1.9.1