diff --git a/src/page/login/index.vue b/src/page/login/index.vue index 3645a98..5a64c15 100755 --- a/src/page/login/index.vue +++ b/src/page/login/index.vue @@ -120,8 +120,8 @@ export default { if (topUrl.includes(redirectUrl) && !validatenull(this.socialForm.source) && !validatenull(this.socialForm.code) && !validatenull(this.socialForm.state)) { const loading = this.$loading({ lock: true, - text: '第三方系统登录中,请稍后。。。', - spinner: "el-icon-loading" + text: '第三方系统登录中,请稍后', + background: 'rgba(0, 0, 0, 0.7)' }); this.$store.dispatch("LoginBySocial", this.socialForm).then(() => { window.location.href = topUrl.split(redirectUrl)[0]; @@ -133,8 +133,8 @@ export default { } else if (!topUrl.includes(redirectUrl) && !validatenull(this.socialForm.code) && !validatenull(this.socialForm.state)) { const loading = this.$loading({ lock: true, - text: '单点系统登录中,请稍后。。。', - spinner: "el-icon-loading" + text: '单点系统登录中,请稍后', + background: 'rgba(0, 0, 0, 0.7)' }); this.$store.dispatch("LoginBySso", this.socialForm).then(() => { window.location.href = topUrl.split(ssoCode)[0];