Browse Source

登录页修改样式

zq940222 4 months ago
parent
commit
b0aafb60bf

BIN
src/assets/loginmini/icon/login_bg.webp


+ 51 - 0
src/assets/loginmini/style/home.less

@@ -1,3 +1,54 @@
+.login-content{
+  left: 970px;
+  top: 150px;
+  width: 737px;
+  height: 654px;
+  opacity: 1;
+  border-radius: 16px;
+  background: rgba(255, 255, 255, 0.4);
+  box-shadow: 0px 4px 10px  rgba(44, 83, 100, 0.1);
+  backdrop-filter: blur(4px);
+  position: absolute;
+  padding: 100px 167px;
+}
+.login-title{
+  width: 100%;
+  height: 36px;
+  opacity: 1;
+  /** 文本1 */
+  font-size: 24px;
+  font-weight: 700;
+  letter-spacing: 0px;
+  line-height: 36px;
+  color: rgba(51, 54, 70, 1);
+  text-align: center;
+  vertical-align: top;
+
+}
+
+.login-account{
+  .login-inputClear{
+    padding: 30px 0 0 0;
+    .login-label{
+      height: 20px;
+      opacity: 1;
+      /** 文本1 */
+      font-size: 14px;
+      font-weight: 400;
+      letter-spacing: 0px;
+      line-height: 20px;
+      color: rgba(51, 54, 70, 1);
+      vertical-align: top;
+      margin-bottom: 10px;
+    }
+  }
+}
+
+.login-code{
+  width: 100%;
+  display: flex;
+}
+
 .aui-content {
   padding: 40px 60px;
   min-height: 100vh;

+ 1 - 1
src/locales/lang/zh-CN/sys.ts

@@ -75,7 +75,7 @@ export default {
 
     loginButton: '登录',
     registerButton: '注册',
-    rememberMe: '记住',
+    rememberMe: '记住密码',
     forgetPassword: '忘记密码?',
     otherSignIn: '其他登录方式',
 

+ 1 - 1
src/router/routes/index.ts

@@ -33,7 +33,7 @@ export const LoginRoute: AppRouteRecordRaw = {
   name: 'Login',
   //新版后台登录,如果想要使用旧版登录放开即可
   // component: () => import('/@/views/sys/login/Login.vue'),
-  component: () => import('/@/views/system/loginmini/MiniLogin.vue'),
+  component: () => import('/@/views/system/loginmini/Login.vue'),
   meta: {
     title: t('routes.basic.login'),
   },

+ 356 - 0
src/views/system/loginmini/Login.vue

@@ -0,0 +1,356 @@
+<template>
+  <div :class="prefixCls">
+    <div class="aui-logo" v-if="!getIsMobile">
+      <div>
+        <h3>
+          <img :src="logoImg" alt="jeecg" />
+        </h3>
+      </div>
+    </div>
+    <div v-else class="aui-phone-logo">
+      <img :src="logoImg" alt="jeecg" />
+    </div>
+    <div class="login-bg">
+      <img :src="loginBg" alt="">
+    </div>
+    <div class="login-content">
+      <div class="login-title">
+        登录 AdWeb V3
+      </div>
+      <div class="login-form-box">
+        <a-form ref="loginRef" :model="formData" >
+          <div class="login-account">
+            <div class="login-inputClear">
+              <div class="login-label">
+                <span>账 号</span>
+              </div>
+              <a-form-item>
+                <a-input class="auto-fill" style="padding: 0 15px;font-size: 14px;" :placeholder="t('sys.login.userName')" v-model:value="formData.username" />
+              </a-form-item>
+            </div>
+            <div class="login-inputClear">
+              <div class="login-label">
+                <span>密 码</span>
+              </div>
+              <a-form-item>
+                <a-input class="auto-fill" style="padding: 0 15px;font-size: 14px;" type="password" :placeholder="t('sys.login.password')" v-model:value="formData.password" />
+              </a-form-item>
+            </div>
+            <div class="login-inputClear">
+              <div class="login-label">
+                <span>验证码</span>
+              </div>
+              <div class="login-code">
+                <a-form-item>
+                  <a-input class="auto-fill" style="padding: 0 15px;font-size: 14px; width: 100%;" type="text" :placeholder="t('sys.login.inputCode')" v-model:value="formData.inputCode" />
+                </a-form-item>
+                <div style="margin-left: 50px">
+                  <img v-if="randCodeData.requestCodeSuccess" :src="randCodeData.randCodeImage" @click="handleChangeCheckCode" />
+                  <img v-else style="margin-top: 2px; max-width: initial" :src="codeImg" @click="handleChangeCheckCode" />
+                </div>
+              </div>
+            </div>
+            <div class="aui-flex" style="padding-top: 30px">
+              <div class="aui-flex-box">
+                <div class="aui-choice">
+                  <a-input class="auto-fill" type="checkbox" v-model:value="rememberMe" />
+                  <span style="margin-left: 5px">{{ t('sys.login.rememberMe') }}</span>
+                </div>
+              </div>
+            </div>
+          </div>
+          <div class="aui-formButton">
+            <div class="aui-flex">
+              <a-button :loading="loginLoading" class="aui-link-login" type="primary" @click="loginHandleClick">
+                {{ t('sys.login.loginButton') }}</a-button>
+            </div>
+          </div>
+        </a-form>
+      </div>
+    </div>
+  </div>
+</template>
+<script lang="ts" setup name="login-mini">
+import { getCaptcha, getCodeInfo } from '/@/api/sys/user';
+import { computed, onMounted, reactive, ref, toRaw, unref } from 'vue';
+import codeImg from '/@/assets/images/checkcode.png';
+import { useUserStore } from '/@/store/modules/user';
+import { useMessage } from '/@/hooks/web/useMessage';
+import { useI18n } from '/@/hooks/web/useI18n';
+import logoImg from '/@/assets/loginmini/icon/soho_9710_logo.png';
+import loginBg from '/@/assets/loginmini/icon/login_bg.webp';
+import { useLocaleStore } from '/@/store/modules/locale';
+import { useDesign } from "/@/hooks/web/useDesign";
+import { useAppInject } from "/@/hooks/web/useAppInject";
+import { useModal } from "@/components/Modal";
+
+const { prefixCls } = useDesign('mini-login');
+const { notification, createMessage } = useMessage();
+const userStore = useUserStore();
+const { t } = useI18n();
+const localeStore = useLocaleStore();
+const randCodeData = reactive<any>({
+  randCodeImage: '',
+  requestCodeSuccess: false,
+  checkKey: null,
+});
+const rememberMe = ref<string>('0');
+//手机号登录还是账号登录
+const activeIndex = ref<string>('accountLogin');
+const type = ref<string>('login');
+//账号登录表单字段
+const formData = reactive<any>({
+  inputCode: '',
+  username: 'admin',
+  password: '123456',
+});
+//手机登录表单字段
+const phoneFormData = reactive<any>({
+  mobile: '',
+  smscode: '',
+});
+const loginRef = ref();
+//第三方登录弹窗
+const thirdModalRef = ref();
+//扫码登录
+const codeRef = ref();
+//是否显示获取验证码
+const showInterval = ref<boolean>(true);
+//60s
+const timeRuning = ref<number>(60);
+//定时器
+const timer = ref<any>(null);
+//忘记密码
+const forgotRef = ref();
+//注册
+const registerRef = ref();
+const loginLoading = ref<boolean>(false);
+const { getIsMobile } = useAppInject();
+const [captchaRegisterModal, { openModal: openCaptchaModal }] = useModal();
+defineProps({
+  sessionTimeout: {
+    type: Boolean,
+  },
+});
+
+/**
+ * 获取验证码
+ */
+function handleChangeCheckCode() {
+  formData.inputCode = '';
+
+  randCodeData.checkKey = 1629428467008;
+  getCodeInfo(randCodeData.checkKey).then((res) => {
+    randCodeData.randCodeImage = res;
+    randCodeData.requestCodeSuccess = true;
+  });
+}
+
+/**
+ * 账号或者手机登录
+ */
+async function loginHandleClick() {
+  // if (unref(activeIndex) === 'accountLogin') {
+  //   accountLogin();
+  // } else {
+  //   //手机号登录
+  // }
+  accountLogin();
+}
+
+async function accountLogin() {
+  if (!formData.username) {
+    createMessage.warn(t('sys.login.accountPlaceholder'));
+    return;
+  }
+  if (!formData.password) {
+    createMessage.warn(t('sys.login.passwordPlaceholder'));
+    return;
+  }
+  try {
+    loginLoading.value = true;
+    const { userInfo } = await userStore.login(
+      toRaw({
+        password: formData.password,
+        username: formData.username,
+        captcha: formData.inputCode,
+        checkKey: randCodeData.checkKey,
+        mode: 'none', //不要默认的错误提示
+      })
+    );
+    if (userInfo) {
+      notification.success({
+        message: t('sys.login.loginSuccessTitle'),
+        description: `${t('sys.login.loginSuccessDesc')}: ${userInfo.realname}`,
+        duration: 3,
+      });
+    }
+  } catch (error) {
+    notification.error({
+      message: t('sys.api.errorTip'),
+      description: error.message || t('sys.login.networkExceptionMsg'),
+      duration: 3,
+    });
+    handleChangeCheckCode();
+  } finally {
+    loginLoading.value = false;
+  }
+}
+
+onMounted(() => {
+  //加载验证码
+  handleChangeCheckCode();
+});
+</script>
+
+<style lang="less" scoped>
+  @import '/@/assets/loginmini/style/home.less';
+  @import '/@/assets/loginmini/style/base.less';
+
+  :deep(.ant-input:focus) {
+    box-shadow: none;
+  }
+  .aui-get-code {
+    float: right;
+    position: relative;
+    z-index: 3;
+    background: #ffffff;
+    color: #1573e9;
+    border-radius: 100px;
+    padding: 5px 16px;
+    margin: 7px;
+    border: 1px solid #1573e9;
+    top: 12px;
+  }
+
+  .aui-get-code:hover {
+    color: #1573e9;
+  }
+
+  .code-shape {
+    border-color: #dadada !important;
+    color: #aaa !important;
+  }
+
+  :deep(.jeecg-dark-switch){
+    position:absolute;
+    margin-right: 10px;
+  }
+  .aui-link-login{
+    height: 42px;
+    padding: 10px 15px;
+    font-size: 14px;
+    border-radius: 8px;
+    margin-top: 35px;
+    margin-bottom: 8px;
+    flex: 1;
+    color: #fff;
+  }
+  .aui-phone-logo{
+    position: absolute;
+    margin-left: 10px;
+    width: 60px;
+    top:2px;
+    z-index: 4;
+  }
+  .top-3{
+    top: 0.45rem;
+  }
+  .login-bg{
+    width: 1045px;
+    height: 758px;
+    position: absolute;
+    z-index: -1;
+    top: 100px;
+  }
+</style>
+
+<style lang="less">
+@prefix-cls: ~'@{namespace}-mini-login';
+@dark-bg: #293146;
+
+html[data-theme='dark'] {
+  .@{prefix-cls} {
+    background-color: @dark-bg !important;
+    background-image: none;
+
+    &::before {
+      background-image: url(/@/assets/svg/login-bg-dark.svg);
+    }
+    .aui-inputClear{
+      background-color: #232a3b !important;
+    }
+    .ant-input,
+    .ant-input-password {
+      background-color: #232a3b !important;
+    }
+
+    .ant-btn:not(.ant-btn-link):not(.ant-btn-primary) {
+      border: 1px solid #4a5569 !important;
+    }
+
+    &-form {
+      background: @dark-bg !important;
+    }
+
+    .app-iconify {
+      color: #fff !important;
+    }
+    .aui-inputClear input,.aui-input-line input,.aui-choice{
+      color: #c9d1d9 !important;
+    }
+
+    .aui-formBox{
+      background-color: @dark-bg !important;
+    }
+    .aui-third-text span{
+      background-color: @dark-bg !important;
+    }
+    .aui-form-nav .aui-flex-box{
+      color: #c9d1d9 !important;
+    }
+
+    .aui-formButton .aui-linek-code{
+      background:  @dark-bg !important;
+      color: white !important;
+    }
+    .aui-code-line{
+      border-left: none !important;
+    }
+    .ant-checkbox-inner,.aui-success h3{
+      border-color: #c9d1d9;
+    }
+    //update-begin---author:wangshuai ---date:20230828  for:【QQYUN-6363】这个样式代码有问题,不在里面,导致表达式有问题------------
+    &-sign-in-way {
+      .anticon {
+        font-size: 22px !important;
+        color: #888 !important;
+        cursor: pointer !important;
+
+        &:hover {
+          color: @primary-color !important;
+        }
+      }
+    }
+    //update-end---author:wangshuai ---date:20230828  for:【QQYUN-6363】这个样式代码有问题,不在里面,导致表达式有问题------------
+  }
+  
+  .ant-divider-inner-text {
+    font-size: 12px !important;
+    color: @text-color-secondary !important;
+  }
+  .aui-third-login a{
+    background: transparent;
+  }
+}
+.auto-fill {
+  width: 403px;
+  height: 36px;
+  opacity: 1;
+  border-radius: 8px;
+  background: rgba(227, 236, 250, 1);
+  border: 1px solid rgba(216, 224, 240, 1);
+  box-shadow: 0px 1px 2px  rgba(184, 200, 224, 0.22);
+
+}
+</style>

+ 17 - 16
src/views/system/loginmini/MiniLogin.vue

@@ -1,7 +1,5 @@
 <template>
-  <div :class="prefixCls" class="login-background-img">
-<!--    <AppLocalePicker class="absolute top-4 right-4 enter-x xl:text-gray-600" :showText="false"/>-->
-<!--    <AppDarkModeToggle class="absolute top-3 right-7 enter-x" />-->
+  <div :class="prefixCls">
     <div class="aui-logo" v-if="!getIsMobile">
       <div>
         <h3>
@@ -12,26 +10,21 @@
     <div v-else class="aui-phone-logo">
       <img :src="logoImg" alt="jeecg" />
     </div>
+    <div class="login-bg">
+      <img :src="loginBg" alt="">
+    </div>
     <div v-show="type === 'login'">
-      <div class="aui-content">
+      <div class="login-content">
         <div class="aui-container">
           <div class="aui-form">
-            <div class="aui-image">
-              <div class="aui-image-text">
-                <img :src="adTextImg" />
-              </div>
-            </div>
             <div class="aui-formBox">
               <div class="aui-formWell">
                 <div class="aui-flex aui-form-nav investment_title">
-                  <div class="aui-flex-box" :class="activeIndex === 'accountLogin' ? 'activeNav on' : ''" @click="loginClick('accountLogin')"
-                    >{{ t('sys.login.signInFormTitle') }}
+                  <div class="aui-flex-box" @click="loginClick('accountLogin')"
+                    >登录 AdWeb V3
                   </div>
-<!--                  <div class="aui-flex-box" :class="activeIndex === 'phoneLogin' ? 'activeNav on' : ''" @click="loginClick('phoneLogin')"-->
-<!--                    >{{ t('sys.login.mobileSignInFormTitle') }}-->
-<!--                  </div>-->
                 </div>
-                <div class="aui-form-box" style="height: 180px">
+                <div class="aui-form-box">
                   <a-form ref="loginRef" :model="formData" v-if="activeIndex === 'accountLogin'" @keyup.enter.native="loginHandleClick">
                     <div class="aui-account">
                       <div class="aui-inputClear">
@@ -56,7 +49,7 @@
                           <img v-else style="margin-top: 2px; max-width: initial" :src="codeImg" @click="handleChangeCheckCode" />
                         </div>
                       </div>
-                      <div class="aui-flex">
+                      <div class="aui-flex" style="padding-top: 10px">
                         <div class="aui-flex-box">
                           <div class="aui-choice">
                             <a-input class="fix-auto-fill" type="checkbox" v-model:value="rememberMe" />
@@ -135,6 +128,7 @@
   import MiniCodelogin from './MiniCodelogin.vue';
   // import logoImg from '/@/assets/loginmini/icon/jeecg_logo.png';
   import logoImg from '/@/assets/loginmini/icon/soho_9710_logo.png';
+  import loginBg from '/@/assets/loginmini/icon/login_bg.webp';
   import adTextImg from '/@/assets/loginmini/icon/login_text.png';
   import { AppLocalePicker, AppDarkModeToggle } from '/@/components/Application';
   import { useLocaleStore } from '/@/store/modules/locale';
@@ -456,6 +450,13 @@
   .top-3{
     top: 0.45rem;
   }
+  .login-bg{
+    width: 1045px;
+    height: 758px;
+    position: absolute;
+    z-index: -1;
+    top: 100px;
+  }
 </style>
 
 <style lang="less">