diff --git a/.env.development b/.env.development index 3d5a50f..7d38ab8 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ # 页面标题 -VUE_APP_TITLE = 供应商自助管理系统 +VUE_APP_TITLE = 供应商自助管理平台 # 开发环境配置 ENV = 'development' diff --git a/src/views/myLogin.vue b/src/views/myLogin.vue index 4496eea..322403d 100644 --- a/src/views/myLogin.vue +++ b/src/views/myLogin.vue @@ -95,13 +95,13 @@ style=" position: absolute; bottom: 0; - margin-left: 36%; - font-size: 18px; + margin-left: 20%; + font-size: 12px; color: white; " > - 软件名称: 医院UDI管理系统 + 软件名称: 医院UDI管理平台 { if (valid) { - this.loading = true; - if (this.loginForm.rememberMe) { - Cookies.set("username", this.loginForm.username, { expires: 30 }); - Cookies.set("password", encrypt(this.loginForm.password), { - expires: 30, - }); - // Cookies.set('rememberMe', this.loginForm.rememberMe, {expires: 30}); + if (this.loginForm.verificationCode) { + this.loading = true; + if (this.loginForm.rememberMe) { + Cookies.set("username", this.loginForm.username, { expires: 30 }); + Cookies.set("password", encrypt(this.loginForm.password), { + expires: 30, + }); + // Cookies.set('rememberMe', this.loginForm.rememberMe, {expires: 30}); + } else { + Cookies.remove("username"); + Cookies.remove("password"); + // Cookies.remove('rememberMe'); + } + + this.$store + .dispatch("Login", this.loginForm) + .then((res) => { + this.$router + .push({ path: this.redirect || "/" }) + .catch((res) => {}); + }) + .catch((res) => { + this.loading = false; + this.$refs.checkV.refresh(); + this.$message.error(res); + if (this.captchaEnabled) { + this.getCode(); + } + }); } else { - Cookies.remove("username"); - Cookies.remove("password"); - // Cookies.remove('rememberMe'); - } - this.$store - .dispatch("Login", this.loginForm) - .then((res) => { - this.$router - .push({ path: this.redirect || "/" }) - .catch((res) => {}); - }) - .catch((res) => { - this.loading = false; - this.$refs.checkV.refresh(); - this.$message.error(res); - if (this.captchaEnabled) { - this.getCode(); - } + this.$message({ + message: "请向右滑动完成验证", + type: "warning", }); + } } }); }, @@ -287,6 +296,7 @@ $light_gray: #eee; background-image: url("../assets/login.jpg"); background-size: 100vw 100vh; height: 100%; + overflow: hidden; input:-webkit-autofill, input:-webkit-autofill:hover,