vue2 验证码,增加开关、修复对社交登录的支持

This commit is contained in:
YunaiV 2022-09-04 12:18:12 +08:00
parent 926c75d29a
commit 1a48301cee
8 changed files with 65 additions and 37 deletions

View File

@ -17,6 +17,9 @@ VUE_APP_APP_NAME ='/admin-ui/'
# 多租户的开关 # 多租户的开关
VUE_APP_TENANT_ENABLE = true VUE_APP_TENANT_ENABLE = true
# 验证码的开关
VUE_APP_CAPTCHA_ENABLE = true
# 文档的开关 # 文档的开关
VUE_APP_DOC_ENABLE = true VUE_APP_DOC_ENABLE = true

View File

@ -13,6 +13,9 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
# 多租户的开关 # 多租户的开关
VUE_APP_TENANT_ENABLE = true VUE_APP_TENANT_ENABLE = true
# 验证码的开关
VUE_APP_CAPTCHA_ENABLE = true
# 文档的开关 # 文档的开关
VUE_APP_DOC_ENABLE = true VUE_APP_DOC_ENABLE = true

View File

@ -14,6 +14,9 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
# 多租户的开关 # 多租户的开关
VUE_APP_TENANT_ENABLE = true VUE_APP_TENANT_ENABLE = true
# 验证码的开关
VUE_APP_CAPTCHA_ENABLE = true
# 文档的开关 # 文档的开关
VUE_APP_DOC_ENABLE = true VUE_APP_DOC_ENABLE = true

View File

@ -15,6 +15,9 @@ VUE_APP_APP_NAME ='yudao-admin'
# 多租户的开关 # 多租户的开关
VUE_APP_TENANT_ENABLE = true VUE_APP_TENANT_ENABLE = true
# 验证码的开关
VUE_APP_CAPTCHA_ENABLE = true
# 文档的开关 # 文档的开关
VUE_APP_DOC_ENABLE = false VUE_APP_DOC_ENABLE = false

View File

@ -15,6 +15,9 @@ PUBLIC_PATH = 'http://static.yudao.iocoder.cn/'
# 多租户的开关 # 多租户的开关
VUE_APP_TENANT_ENABLE = true VUE_APP_TENANT_ENABLE = true
# 验证码的开关
VUE_APP_CAPTCHA_ENABLE = true
# 文档的开关 # 文档的开关
VUE_APP_DOC_ENABLE = false VUE_APP_DOC_ENABLE = false

View File

@ -185,6 +185,19 @@ export function getTenantEnable() {
return process.env.VUE_APP_TENANT_ENABLE || true; return process.env.VUE_APP_TENANT_ENABLE || true;
} }
/**
* 获得验证码功能是否开启
*/
export function getCaptchaEnable() {
if (process.env.VUE_APP_CAPTCHA_ENABLE === "true") {
return true;
}
if (process.env.VUE_APP_CAPTCHA_ENABLE === "false") {
return false;
}
return process.env.VUE_APP_CAPTCHA_ENABLE || true;
}
/** /**
* 获得文档是否开启 * 获得文档是否开启
*/ */

View File

@ -87,12 +87,11 @@
</div> </div>
</div> </div>
</div> </div>
<Verify
ref="verify" <!-- 图形验证码 -->
:captcha-type="'blockPuzzle'" <Verify ref="verify" :captcha-type="'blockPuzzle'" :img-size="{width:'400px',height:'200px'}"
:img-size="{width:'400px',height:'200px'}" @success="handleLogin" />
@success="handleLogin"
/>
<!-- footer --> <!-- footer -->
<div class="footer"> <div class="footer">
Copyright © 2020-2022 iocoder.cn All Rights Reserved. Copyright © 2020-2022 iocoder.cn All Rights Reserved.
@ -104,7 +103,7 @@
import {sendSmsCode, socialAuthRedirect} from "@/api/login"; import {sendSmsCode, socialAuthRedirect} from "@/api/login";
import {getTenantIdByName} from "@/api/system/tenant"; import {getTenantIdByName} from "@/api/system/tenant";
import {SystemUserSocialTypeEnum} from "@/utils/constants"; import {SystemUserSocialTypeEnum} from "@/utils/constants";
import {getTenantEnable} from "@/utils/ruoyi"; import {getCaptchaEnable, getTenantEnable} from "@/utils/ruoyi";
import { import {
getPassword, getPassword,
getRememberMe, getTenantName, getRememberMe, getTenantName,
@ -188,16 +187,21 @@ export default {
created() { created() {
// //
this.tenantEnable = getTenantEnable(); this.tenantEnable = getTenantEnable();
//
this.captchaEnable = getCaptchaEnable();
// //
this.redirect = this.$route.query.redirect; this.redirect = this.$route.query.redirect;
this.getCookie(); this.getCookie();
}, },
methods: { methods: {
getCode() { getCode() {
// //
if (!this.captchaEnable) { if (!this.captchaEnable) {
this.handleLogin({})
return; return;
} }
//
// //
this.$refs.verify.show() this.$refs.verify.show()
}, },
@ -214,7 +218,7 @@ export default {
tenantName: tenantName ? tenantName : this.loginForm.tenantName, tenantName: tenantName ? tenantName : this.loginForm.tenantName,
}; };
}, },
handleLogin(params) { handleLogin(captchaParams) {
this.$refs.loginForm.validate(valid => { this.$refs.loginForm.validate(valid => {
if (valid) { if (valid) {
this.loading = true; this.loading = true;
@ -230,7 +234,7 @@ export default {
removeRememberMe() removeRememberMe()
removeTenantName() removeTenantName()
} }
this.loginForm.captchaVerification = params.captchaVerification this.loginForm.captchaVerification = captchaParams.captchaVerification
// //
// console.log("", this.loginForm); // console.log("", this.loginForm);
this.$store.dispatch(this.loginForm.loginType === "sms" ? "SmsLogin" : "Login", this.loginForm).then(() => { this.$store.dispatch(this.loginForm.loginType === "sms" ? "SmsLogin" : "Login", this.loginForm).then(() => {

View File

@ -32,20 +32,11 @@
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon"/> <svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon"/>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item prop="code" v-if="captchaEnable">
<el-input v-model="loginForm.code" auto-complete="off" placeholder="验证码" style="width: 63%"
@keyup.enter.native="handleLogin">
<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:0 0 25px 0;">记住密码</el-checkbox> <el-checkbox v-model="loginForm.rememberMe" style="margin:0 0 25px 0;">记住密码</el-checkbox>
<!-- 下方的登录按钮 --> <!-- 下方的登录按钮 -->
<el-form-item style="width:100%;"> <el-form-item style="width:100%;">
<el-button :loading="loading" size="medium" type="primary" style="width:100%;" <el-button :loading="loading" size="medium" type="primary" style="width:100%;"
@click.native.prevent="handleLogin"> @click.native.prevent="getCode">
<span v-if="!loading"> </span> <span v-if="!loading"> </span>
<span v-else> 中...</span> <span v-else> 中...</span>
</el-button> </el-button>
@ -55,6 +46,11 @@
</div> </div>
</div> </div>
</div> </div>
<!-- 图形验证码 -->
<Verify ref="verify" :captcha-type="'blockPuzzle'" :img-size="{width:'400px',height:'200px'}"
@success="handleLogin" />
<!-- footer --> <!-- footer -->
<div class="footer"> <div class="footer">
Copyright © 2020-2022 iocoder.cn All Rights Reserved. Copyright © 2020-2022 iocoder.cn All Rights Reserved.
@ -72,10 +68,15 @@ import {
setRememberMe, setRememberMe,
setUsername setUsername
} from "@/utils/auth"; } from "@/utils/auth";
import {getCodeImg} from "@/api/login";
import Verify from '@/components/Verifition/Verify';
import {getCaptchaEnable} from "@/utils/ruoyi";
export default { export default {
name: "ThirdLogin", name: "ThirdLogin",
components: {
Verify
},
data() { data() {
return { return {
codeUrl: "", codeUrl: "",
@ -85,8 +86,7 @@ export default {
username: "admin", username: "admin",
password: "admin123", password: "admin123",
rememberMe: false, rememberMe: false,
code: "", captchaVerification: "",
uuid: "",
}, },
loginRules: { loginRules: {
username: [ username: [
@ -114,9 +114,10 @@ export default {
// }, // },
created() { created() {
this.getCookie(); this.getCookie();
//
this.captchaEnable = getCaptchaEnable();
// //
this.redirect = this.$route.query.redirect; this.redirect = this.$route.query.redirect;
this.getCode();
// //
this.type = this.$route.query.type; this.type = this.$route.query.type;
this.code = this.$route.query.code; this.code = this.$route.query.code;
@ -133,19 +134,15 @@ export default {
}, },
methods: { methods: {
getCode() { getCode() {
// //
if (!this.captchaEnable) { if (!this.captchaEnable) {
this.handleLogin({})
return; return;
} }
//
getCodeImg().then(res => { //
res = res.data; //
this.captchaEnable = res.enable; this.$refs.verify.show()
if (this.captchaEnable) {
this.codeUrl = "data:image/gif;base64," + res.img;
this.loginForm.uuid = res.uuid;
}
});
}, },
getCookie() { getCookie() {
const username = getUsername(); const username = getUsername();
@ -158,7 +155,7 @@ export default {
loginType: this.loginForm.loginType, loginType: this.loginForm.loginType,
}; };
}, },
handleLogin() { handleLogin(captchaParams) {
this.$refs.loginForm.validate(valid => { this.$refs.loginForm.validate(valid => {
if (valid) { if (valid) {
this.loading = true; this.loading = true;
@ -177,8 +174,7 @@ export default {
// //
username: this.loginForm.username, username: this.loginForm.username,
password: this.loginForm.password, password: this.loginForm.password,
code: this.loginForm.code, captchaVerification: captchaParams.captchaVerification
uuid: this.loginForm.uuid,
}).then(() => { }).then(() => {
this.$router.push({ path: this.redirect || "/" }).catch(()=>{}); this.$router.push({ path: this.redirect || "/" }).catch(()=>{});
}).catch(() => { }).catch(() => {