Browse Source

登录样式修改,svg暂时没用到

gcz 3 years ago
parent
commit
c69e894ace

+ 384 - 0
src/views/login copy.vue

@@ -0,0 +1,384 @@
+<template>
+  <div class="login-container">
+    <el-row>
+      <el-col :xs="24" :sm="24" :md="12" :lg="16" :xl="16">
+        <div style="color: transparent">占位符</div>
+      </el-col>
+      <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="8">
+        <el-form
+          ref="form"
+          :model="form"
+          :rules="rules"
+          class="login-form"
+          label-position="left"
+        >
+          <div class="title">hello !</div>
+          <div class="title-tips">欢迎来到{{ title }}!</div>
+          <el-form-item style="margin-top: 40px" prop="username">
+            <span class="svg-container svg-container-admin">
+              <i class="el-icon-user-solid"></i>
+            </span>
+            <el-input
+              v-model.trim="form.username"
+              v-focus
+              placeholder="请输入用户名"
+              tabindex="1"
+              type="text"
+            />
+          </el-form-item>
+          <el-form-item prop="password">
+            <span class="svg-container">
+              <i class="el-icon-more"></i>
+            </span>
+            <el-input
+              :key="passwordType"
+              ref="password"
+              v-model.trim="form.password"
+              :type="passwordType"
+              tabindex="2"
+              placeholder="请输入密码"
+              maxlength="16"
+              @keyup.enter.native="handleLogin"
+            />
+            <span
+              v-if="passwordType === 'password'"
+              class="show-password"
+              @click="handlePassword"
+            >
+              <i class="el-icon-view"></i>
+            </span>
+            <span v-else class="show-password" @click="handlePassword">
+              <i class="el-icon-edit"></i>
+            </span>
+          </el-form-item>
+          <el-form-item
+            style="
+              display: flex;
+              flex-wrap: nowrap;
+              flex-direction: column;
+              flejustify-content: space-between;
+            "
+            prop="code"
+          >
+            <span class="svg-container svg-container-admin">
+              <i class="el-icon-s-help"></i>
+            </span>
+            <el-input
+              style="width: 60%"
+              v-model.trim="form.code"
+              v-focus
+              placeholder="请输入验证码"
+              tabindex="1"
+              type="text"
+            />
+            <img
+              class="code-img middle-img"
+              :src="codeImg"
+              alt=""
+              @click="handelGetCaptcha"
+            />
+          </el-form-item>
+          <el-button
+            :loading="loading"
+            class="login-btn"
+            type="primary"
+            @click="handleLogin"
+          >
+            登录
+          </el-button>
+          <router-link to="/register">
+            <div style="margin-top: 20px">注册</div>
+          </router-link>
+        </el-form>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+import { getCaptcha, login } from "@/utils/api.js";
+
+export default {
+  name: "Login",
+  inject: ["reload"],
+  directives: {
+    focus: {
+      inserted(el) {
+        el.querySelector("input").focus();
+      },
+    },
+  },
+  data() {
+    return {
+      nodeEnv: process.env.NODE_ENV,
+      title: "",
+      form: {
+        username: "ry123456",
+        password: "asd123fsadf@$!~",
+        // username: "ceshi001",
+        // password: "Py6z99qNy8BKf4",
+        code: "",
+        uuid: "",
+      },
+      rules: {
+        username: [
+          {
+            required: true,
+            pattern: /^[a-zA-Z][0-9a-zA-Z]{6,20}$/,
+            message: "请输入规则的用户名",
+            trigger: "blur",
+          },
+        ],
+        password: [
+          {
+            required: true,
+            pattern:
+              /((^(?=.*[a-z])(?=.*[A-Z])(?=.*\W)[\da-zA-Z\W]{8,16}$)|(^(?=.*\d)(?=.*[A-Z])(?=.*\W)[\da-zA-Z\W]{8,16}$)|(^(?=.*\d)(?=.*[a-z])(?=.*\W)[\da-zA-Z\W]{8,16}$)|(^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])[\da-zA-Z\W]{8,16}$))/,
+            message:
+              "请输入8-16位字符、大小写字母、数字、特殊字符,任意三种组合密码",
+            trigger: "blur",
+          },
+        ],
+        code: [
+          {
+            required: true,
+            message: "请输入验证码",
+            trigger: "blur",
+          },
+        ],
+      },
+      loading: false,
+      passwordType: "password",
+      redirect: undefined,
+      codeImg: "",
+    };
+  },
+  watch: {
+    $route: {
+      handler(route) {
+        // console.log("fromUrl", localStorage.getItem("fromUrl"));
+        this.redirect = localStorage.getItem("fromUrl");
+        // this.redirect = (route.query && route.query.redirect) || "/";
+      },
+      immediate: true,
+    },
+  },
+  created() {
+    this.title = this.webTitle;
+    this.handelGetCaptcha();
+    document.body.style.overflow = "hidden";
+  },
+  beforeDestroy() {
+    document.body.style.overflow = "auto";
+  },
+  mounted() {},
+  methods: {
+    handelGetCaptcha() {
+      getCaptcha()
+        .then((res) => {
+          this.codeImg = res.data.image;
+          this.form.uuid = res.data.key;
+          console.log("getCaptcha", res);
+        })
+        .catch((err) => {
+          console.log("getCaptcha err", err);
+        });
+    },
+    handlePassword() {
+      this.passwordType === "password"
+        ? (this.passwordType = "")
+        : (this.passwordType = "password");
+      this.$nextTick(() => {
+        this.$refs.password.focus();
+      });
+    },
+    handleLogin() {
+      let that = this;
+      let backUrl = "/";
+      this.$refs.form.validate((valid) => {
+        if (valid) {
+          this.loading = true;
+          console.log("this.form", this.form);
+          login(this.form)
+            .then((res) => {
+              this.$mc.vuex("vuex_token", res.data.access_token);
+              this.$message(res.msg);
+
+              const routerPath =
+                that.redirect === "/404" || that.redirect === "/401"
+                  ? "/"
+                  : that.redirect;
+              if (that.redirect) {
+                backUrl = that.redirect.split()[0];
+              }
+              //   console.log("that.redirect", that.redirect);
+              localStorage.removeItem("fromUrl");
+              this.reload();
+              location.href = backUrl;
+
+              //   that.$router.replace("/jobdetails").catch(() => {});
+              that.loading = false;
+
+              console.log("login", res);
+            })
+            .catch((err) => {
+              this.loading = false;
+              console.log("login err", err);
+            });
+        } else {
+          return false;
+        }
+      });
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+$base-input-height: 32px;
+$base-font-size-small: 12px;
+$base-color-red: #f34d37;
+$base-font-color: #606266;
+.login-container {
+  height: 100vh;
+  background: url("../../static/images/background.png") center center fixed
+    no-repeat;
+  background-size: cover;
+
+  .title {
+    font-size: 54px;
+    font-weight: 500;
+    color: rgba(14, 18, 26, 1);
+  }
+
+  .title-tips {
+    margin-top: 29px;
+    font-size: 26px;
+    font-weight: 400;
+    color: rgba(14, 18, 26, 1);
+    text-overflow: ellipsis;
+    white-space: nowrap;
+  }
+
+  .login-btn {
+    display: inherit;
+    width: 220px;
+    height: 60px;
+    margin-top: 5px;
+    border: 0;
+
+    &:hover {
+      opacity: 0.9;
+    }
+  }
+
+  .login-form {
+    position: relative;
+    max-width: 100%;
+    margin: calc((100vh - 425px) / 2) 10% 10%;
+    overflow: hidden;
+
+    .forget-password {
+      width: 100%;
+      margin-top: 40px;
+      text-align: left;
+
+      .forget-pass {
+        width: 129px;
+        height: 19px;
+        font-size: 20px;
+        font-weight: 400;
+        color: rgba(92, 102, 240, 1);
+      }
+    }
+  }
+
+  .tips {
+    margin-bottom: 10px;
+    font-size: 14px;
+    color: #ddd;
+    span {
+      &:first-of-type {
+        margin-right: 16px;
+      }
+    }
+  }
+
+  .title-container {
+    position: relative;
+
+    .title {
+      margin: 0 auto 40px auto;
+      font-size: 34px;
+      font-weight: bold;
+      color: blue;
+      text-align: center;
+    }
+  }
+
+  .svg-container {
+    position: absolute;
+    top: 14px;
+    left: 15px;
+    z-index: 999;
+    font-size: 16px;
+    color: #d7dee3;
+    cursor: pointer;
+    user-select: none;
+  }
+
+  .show-password {
+    position: absolute;
+    top: 14px;
+    right: 25px;
+    font-size: 16px;
+    color: #d7dee3;
+    cursor: pointer;
+    user-select: none;
+  }
+
+  ::v-deep {
+    .el-form-item {
+      padding-right: 0;
+      margin: 20px 0;
+      color: #454545;
+      background: transparent;
+      border: 1px solid transparent;
+      border-radius: 2px;
+
+      &__content {
+        min-height: $base-input-height;
+        line-height: $base-input-height;
+      }
+
+      &__error {
+        position: absolute;
+        top: 100%;
+        left: 18px;
+        font-size: $base-font-size-small;
+        line-height: 18px;
+        color: $base-color-red;
+      }
+    }
+
+    .el-input {
+      box-sizing: border-box;
+
+      input {
+        height: 58px;
+        padding-left: 45px;
+        font-size: 14px;
+        line-height: 58px;
+        color: $base-font-color;
+        background: #f6f4fc;
+        border: 0;
+        caret-color: $base-font-color;
+      }
+    }
+  }
+}
+.code-img {
+  margin-left: 10px;
+  cursor: pointer;
+}
+</style>

+ 150 - 299
src/views/login.vue

@@ -1,103 +1,72 @@
 <template>
-  <div class="login-container">
-    <el-row>
-      <el-col :xs="24" :sm="24" :md="12" :lg="16" :xl="16">
-        <div style="color: transparent">占位符</div>
-      </el-col>
-      <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="8">
-        <el-form
-          ref="form"
-          :model="form"
-          :rules="rules"
-          class="login-form"
-          label-position="left"
+  <div class="login">
+    <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
+      <h3 class="title">
+        <!-- <svg-icon icon-class="logo" /> -->
+        {{ loginTitle }}</h3>
+      <el-form-item prop="username">
+        <el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
+          <i  slot="prefix" class="el-icon-user-solid input-icon"></i>
+          <!-- <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" /> -->
+        </el-input>
+      </el-form-item>
+      <el-form-item prop="password">
+        <el-input
+          v-model="loginForm.password"
+          type="password"
+          auto-complete="off"
+          placeholder="密码"
+          @keyup.enter.native="handleLogin"
         >
-          <div class="title">hello !</div>
-          <div class="title-tips">欢迎来到{{ title }}!</div>
-          <el-form-item style="margin-top: 40px" prop="username">
-            <span class="svg-container svg-container-admin">
-              <i class="el-icon-user-solid"></i>
-            </span>
-            <el-input
-              v-model.trim="form.username"
-              v-focus
-              placeholder="请输入用户名"
-              tabindex="1"
-              type="text"
-            />
-          </el-form-item>
-          <el-form-item prop="password">
-            <span class="svg-container">
-              <i class="el-icon-more"></i>
-            </span>
-            <el-input
-              :key="passwordType"
-              ref="password"
-              v-model.trim="form.password"
-              :type="passwordType"
-              tabindex="2"
-              placeholder="请输入密码"
-              maxlength="16"
-              @keyup.enter.native="handleLogin"
-            />
-            <span
-              v-if="passwordType === 'password'"
-              class="show-password"
-              @click="handlePassword"
-            >
-              <i class="el-icon-view"></i>
-            </span>
-            <span v-else class="show-password" @click="handlePassword">
-              <i class="el-icon-edit"></i>
-            </span>
-          </el-form-item>
-          <el-form-item
-            style="
-              display: flex;
-              flex-wrap: nowrap;
-              flex-direction: column;
-              flejustify-content: space-between;
-            "
-            prop="code"
-          >
-            <span class="svg-container svg-container-admin">
-              <i class="el-icon-s-help"></i>
-            </span>
-            <el-input
-              style="width: 60%"
-              v-model.trim="form.code"
-              v-focus
-              placeholder="请输入验证码"
-              tabindex="1"
-              type="text"
-            />
-            <img
-              class="code-img middle-img"
-              :src="codeImg"
-              alt=""
-              @click="handelGetCaptcha"
-            />
-          </el-form-item>
-          <el-button
-            :loading="loading"
-            class="login-btn"
-            type="primary"
-            @click="handleLogin"
-          >
-            登录
-          </el-button>
-          <router-link to="/register">
-            <div style="margin-top: 20px">注册</div>
-          </router-link>
-        </el-form>
-      </el-col>
-    </el-row>
+        <i  slot="prefix" class="el-icon-lock input-icon"></i>
+          <!-- <svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />0 -->
+        </el-input>
+      </el-form-item>
+      <el-form-item prop="code">
+        <el-input
+          v-model="loginForm.code"
+          auto-complete="off"
+          placeholder="验证码"
+              style="width: 63%;"
+          @keyup.enter.native="handleLogin"
+        >
+        <i  slot="prefix" class="el-icon-mobile input-icon"></i>
+          <!-- <svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon" /> -->
+        </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="medium"
+          style="width:100%;background:#3d5d4c;color:#fff"
+              class="login-form-loginbtn"
+          @click.native.prevent="handleLogin"
+        >
+          <span v-if="!loading" >登 录</span>
+          <span v-else>登 录 中...</span>
+        </el-button>
+      </el-form-item>
+    </el-form>
+    <!--  底部  -->
+    <!-- <div class="el-login-footer">
+      <span>Copyright © 2018-2021 ****** All Rights Reserved.</span>
+    </div>-->
   </div>
 </template>
 
 <script>
+// import { getCodeImg } from "@/api/login";
 import { getCaptcha, login } from "@/utils/api.js";
 
+// // import Cookies from "js-cookie";
+// import { encrypt, decrypt } from '@/utils/jsencrypt';
+// const loginAppProjectKey = process.env.VUE_APP_PROJECT_KEY + '-';
+
 export default {
   name: "Login",
   inject: ["reload"],
@@ -110,96 +79,60 @@ export default {
   },
   data() {
     return {
-      nodeEnv: process.env.NODE_ENV,
-      title: "",
-      form: {
-        username: "ry123456",
-        password: "asd123fsadf@$!~",
-        // username: "ceshi001",
-        // password: "Py6z99qNy8BKf4",
+      loginTitle: '',
+      codeUrl: "",
+      cookiePassword: "",
+      loginForm: {
+        username: "",
+        password: "",
+        rememberMe: false,
         code: "",
-        uuid: "",
+        uuid: ""
       },
-      rules: {
+      loginRules: {
         username: [
-          {
-            required: true,
-            pattern: /^[a-zA-Z][0-9a-zA-Z]{6,20}$/,
-            message: "请输入规则的用户名",
-            trigger: "blur",
-          },
+          { required: true, trigger: "blur", message: "用户名不能为空" }
         ],
         password: [
-          {
-            required: true,
-            pattern:
-              /((^(?=.*[a-z])(?=.*[A-Z])(?=.*\W)[\da-zA-Z\W]{8,16}$)|(^(?=.*\d)(?=.*[A-Z])(?=.*\W)[\da-zA-Z\W]{8,16}$)|(^(?=.*\d)(?=.*[a-z])(?=.*\W)[\da-zA-Z\W]{8,16}$)|(^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])[\da-zA-Z\W]{8,16}$))/,
-            message:
-              "请输入8-16位字符、大小写字母、数字、特殊字符,任意三种组合密码",
-            trigger: "blur",
-          },
-        ],
-        code: [
-          {
-            required: true,
-            message: "请输入验证码",
-            trigger: "blur",
-          },
+          { required: true, trigger: "blur", message: "密码不能为空" }
         ],
+        code: [{ required: true, trigger: "change", message: "验证码不能为空" }]
       },
       loading: false,
-      passwordType: "password",
-      redirect: undefined,
-      codeImg: "",
+      redirect: undefined
     };
   },
   watch: {
     $route: {
-      handler(route) {
-        // console.log("fromUrl", localStorage.getItem("fromUrl"));
-        this.redirect = localStorage.getItem("fromUrl");
-        // this.redirect = (route.query && route.query.redirect) || "/";
+      handler: function(route) {
+         this.redirect = localStorage.getItem("fromUrl");
       },
-      immediate: true,
-    },
+      immediate: true
+    }
   },
   created() {
-    this.title = this.webTitle;
-    this.handelGetCaptcha();
-    document.body.style.overflow = "hidden";
-  },
-  beforeDestroy() {
-    document.body.style.overflow = "auto";
+    this.loginTitle = this.webTitle;
+    if (process.env.NODE_ENV === 'development') {
+      this.loginForm.username = 'ry123456';
+      this.loginForm.password = 'asd123fsadf@$!~';
+    }
+    this.getCode();
   },
-  mounted() {},
   methods: {
-    handelGetCaptcha() {
-      getCaptcha()
-        .then((res) => {
-          this.codeImg = res.data.image;
-          this.form.uuid = res.data.key;
-          console.log("getCaptcha", res);
-        })
-        .catch((err) => {
-          console.log("getCaptcha err", err);
-        });
-    },
-    handlePassword() {
-      this.passwordType === "password"
-        ? (this.passwordType = "")
-        : (this.passwordType = "password");
-      this.$nextTick(() => {
-        this.$refs.password.focus();
+    getCode() {
+      getCaptcha().then(res => {
+        this.codeUrl =   res.data.image;
+        this.loginForm.uuid = res.data.key;
       });
     },
     handleLogin() {
       let that = this;
       let backUrl = "/";
-      this.$refs.form.validate((valid) => {
+      this.$refs.loginForm.validate((valid) => {
         if (valid) {
           this.loading = true;
-          console.log("this.form", this.form);
-          login(this.form)
+          console.log("this.loginForm", this.loginForm);
+          login(this.loginForm)
             .then((res) => {
               this.$mc.vuex("vuex_token", res.data.access_token);
               this.$message(res.msg);
@@ -229,156 +162,74 @@ export default {
           return false;
         }
       });
-    },
-  },
+    }
+  }
 };
 </script>
 
-<style lang="scss" scoped>
-$base-input-height: 32px;
-$base-font-size-small: 12px;
-$base-color-red: #f34d37;
-$base-font-color: #606266;
-.login-container {
-  height: 100vh;
-  background: url("../../static/images/background.jpg") center center fixed
-    no-repeat;
+<style rel="stylesheet/scss" lang="scss">
+#app{
+  min-height: 100vh;
+}
+.login {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  height: 100%;
+  min-height: 100vh;
+  background-image: url("../../static/images/background.png");
   background-size: cover;
+}
+.title {
+  margin: 0px auto 30px auto;
+  text-align: center;
+  color: #707070;
+}
 
-  .title {
-    font-size: 54px;
-    font-weight: 500;
-    color: rgba(14, 18, 26, 1);
-  }
-
-  .title-tips {
-    margin-top: 29px;
-    font-size: 26px;
-    font-weight: 400;
-    color: rgba(14, 18, 26, 1);
-    text-overflow: ellipsis;
-    white-space: nowrap;
-  }
-
-  .login-btn {
-    display: inherit;
-    width: 220px;
-    height: 60px;
-    margin-top: 5px;
-    border: 0;
-
-    &:hover {
-      opacity: 0.9;
-    }
-  }
-
-  .login-form {
-    position: relative;
-    max-width: 100%;
-    margin: calc((100vh - 425px) / 2) 10% 10%;
-    overflow: hidden;
-
-    .forget-password {
-      width: 100%;
-      margin-top: 40px;
-      text-align: left;
-
-      .forget-pass {
-        width: 129px;
-        height: 19px;
-        font-size: 20px;
-        font-weight: 400;
-        color: rgba(92, 102, 240, 1);
-      }
-    }
-  }
-
-  .tips {
-    margin-bottom: 10px;
-    font-size: 14px;
-    color: #ddd;
-    span {
-      &:first-of-type {
-        margin-right: 16px;
-      }
-    }
-  }
-
-  .title-container {
-    position: relative;
-
-    .title {
-      margin: 0 auto 40px auto;
-      font-size: 34px;
-      font-weight: bold;
-      color: blue;
-      text-align: center;
+.login-form {
+  border-radius: 6px;
+  background: #ffffff;
+  width: 400px;
+  padding: 25px 25px 5px 25px;
+  .el-input {
+    height: 38px;
+    input {
+      height: 38px;
     }
   }
-
-  .svg-container {
-    position: absolute;
-    top: 14px;
-    left: 15px;
-    z-index: 999;
-    font-size: 16px;
-    color: #d7dee3;
-    cursor: pointer;
-    user-select: none;
+  .input-icon {
+    height: 39px;
+    width: 14px;
+    margin-left: 2px;
   }
-
-  .show-password {
-    position: absolute;
-    top: 14px;
-    right: 25px;
-    font-size: 16px;
-    color: #d7dee3;
+}
+.login-tip {
+  font-size: 13px;
+  text-align: center;
+  color: #bfbfbf;
+}
+.login-code {
+  width: 33%;
+  height: 38px;
+  float: right;
+  img {
     cursor: pointer;
-    user-select: none;
-  }
-
-  ::v-deep {
-    .el-form-item {
-      padding-right: 0;
-      margin: 20px 0;
-      color: #454545;
-      background: transparent;
-      border: 1px solid transparent;
-      border-radius: 2px;
-
-      &__content {
-        min-height: $base-input-height;
-        line-height: $base-input-height;
-      }
-
-      &__error {
-        position: absolute;
-        top: 100%;
-        left: 18px;
-        font-size: $base-font-size-small;
-        line-height: 18px;
-        color: $base-color-red;
-      }
-    }
-
-    .el-input {
-      box-sizing: border-box;
-
-      input {
-        height: 58px;
-        padding-left: 45px;
-        font-size: 14px;
-        line-height: 58px;
-        color: $base-font-color;
-        background: #f6f4fc;
-        border: 0;
-        caret-color: $base-font-color;
-      }
-    }
+    vertical-align: middle;
   }
 }
-.code-img {
-  margin-left: 10px;
-  cursor: pointer;
+.el-login-footer {
+  height: 40px;
+  line-height: 40px;
+  position: fixed;
+  bottom: 0;
+  width: 100%;
+  text-align: center;
+  color: #fff;
+  font-family: Arial;
+  font-size: 12px;
+  letter-spacing: 1px;
+}
+.login-code-img {
+  height: 38px;
 }
-</style>
+</style>

BIN
static/images/background.png


File diff suppressed because it is too large
+ 1 - 0
static/svg/logo.svg


File diff suppressed because it is too large
+ 1 - 0
static/svg/password.svg


+ 1 - 0
static/svg/user.svg

@@ -0,0 +1 @@
+<svg width="130" height="130" xmlns="http://www.w3.org/2000/svg"><path d="M63.444 64.996c20.633 0 37.359-14.308 37.359-31.953 0-17.649-16.726-31.952-37.359-31.952-20.631 0-37.36 14.303-37.358 31.952 0 17.645 16.727 31.953 37.359 31.953zM80.57 75.65H49.434c-26.652 0-48.26 18.477-48.26 41.27v2.664c0 9.316 21.608 9.325 48.26 9.325H80.57c26.649 0 48.256-.344 48.256-9.325v-2.663c0-22.794-21.605-41.271-48.256-41.271z" stroke="#979797"/></svg>

File diff suppressed because it is too large
+ 1 - 0
static/svg/validCode.svg