|
@@ -33,6 +33,7 @@
|
|
|
</div>
|
|
|
|
|
|
<el-button :loading="loading" type="primary" style="width: 100%;margin-top: 18px;height: 42px;border-radius: 2px;" @click.native.prevent="handleLogin">登录</el-button>
|
|
|
+ <p v-if="timeMinunt.state" class="stateError">当前登录错误次数过多,{{timeMinunt.time}}分钟后可以再次登录</p>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -42,6 +43,7 @@ import { isValue } from "@/utils/validate";
|
|
|
import { getVCode, getToken } from "@/api/login";
|
|
|
import { setCodeToken, getCodeToken, setToken } from '@/utils/auth';
|
|
|
import MD5 from 'blueimp-md5'
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
export default {
|
|
|
name: "Login",
|
|
|
data () {
|
|
@@ -70,7 +72,9 @@ export default {
|
|
|
pageTitle: '',
|
|
|
imgSrc: '',
|
|
|
baseImg: '',
|
|
|
- appId: ''
|
|
|
+ appId: '',
|
|
|
+ userCount: 0,
|
|
|
+ timer: null,
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -81,6 +85,14 @@ export default {
|
|
|
immediate: true,
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(['userLoginList', 'userLoginState']),
|
|
|
+ timeMinunt () {
|
|
|
+ const userState = this.userLoginState
|
|
|
+ const { time, state } = userState
|
|
|
+ return { state, time: Math.ceil(time / (1000 * 60)) }
|
|
|
+ }
|
|
|
+ },
|
|
|
async created () {
|
|
|
try {
|
|
|
const { code, returnData, message } = await getToken({
|
|
@@ -99,6 +111,13 @@ export default {
|
|
|
if (app_code_rule) {
|
|
|
this.getCheckCode()
|
|
|
}
|
|
|
+ const loginList = this.userLoginList
|
|
|
+ //登录限制查询
|
|
|
+ if (loginList.length > PLATFROM_CONFIG.maxCount && this.getLoginState()) {
|
|
|
+ this.loading = true
|
|
|
+ const userState = this.userLoginState
|
|
|
+ this.timePiker(userState)
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$message.error(message);
|
|
|
}
|
|
@@ -106,6 +125,11 @@ export default {
|
|
|
this.$message.error(error.message);
|
|
|
}
|
|
|
},
|
|
|
+ beforeDestroy () {
|
|
|
+ clearInterval(this.timer)
|
|
|
+ this.timer = null
|
|
|
+ this.loading = false
|
|
|
+ },
|
|
|
methods: {
|
|
|
showPwd () {
|
|
|
if (this.passwordType === "password") {
|
|
@@ -132,20 +156,68 @@ export default {
|
|
|
this.$store
|
|
|
.dispatch("user/login", params)
|
|
|
.then(async () => {
|
|
|
- this.$store.dispatch("app/toggleOutcheck", false);
|
|
|
+ clearInterval(this.timer)
|
|
|
+ this.timer = null
|
|
|
+ this.$store.dispatch("app/toggleOutcheck", false)
|
|
|
+ this.$store.dispatch("user/setLoginList", [])
|
|
|
+ this.$store.dispatch("user/setLoginState", { state: false, time: 60 * PLATFROM_CONFIG.maxTime })
|
|
|
sessionStorage.setItem("userName", params.username);
|
|
|
this.$router.push({ path: this.redirect || "/" });
|
|
|
this.loading = false;
|
|
|
})
|
|
|
.catch(() => {
|
|
|
+ const mapDataLen = this.restrictLogin();
|
|
|
this.getCheckCode();
|
|
|
- this.loading = false;
|
|
|
+ if (mapDataLen > PLATFROM_CONFIG.maxCount) {
|
|
|
+ this.$message.error('登录错误次数超过最大登录次数限制,禁止登录')
|
|
|
+ this.loading = true
|
|
|
+ const userState = this.userLoginState
|
|
|
+ this.timePiker(userState)
|
|
|
+ } else {
|
|
|
+ this.loading = false;
|
|
|
+ }
|
|
|
});
|
|
|
} else {
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ // 限制登录
|
|
|
+ restrictLogin () {
|
|
|
+ const loginParams = {
|
|
|
+ username: this.loginForm.username.replace(/\s+/g, ""),
|
|
|
+ }
|
|
|
+ const loginList = this.userLoginList
|
|
|
+ loginList.push(loginParams)
|
|
|
+ this.$store.dispatch("user/setLoginList", loginList)
|
|
|
+ const mapData = loginList.filter(item => item.username === this.loginForm.username)
|
|
|
+ return mapData.length
|
|
|
+ },
|
|
|
+ //登录计时器
|
|
|
+ timePiker (userState) {
|
|
|
+ this.timer = setInterval(() => {
|
|
|
+ const newTime = userState.time--
|
|
|
+ const newState = { state: true, time: newTime }
|
|
|
+ this.$store.dispatch("user/setLoginState", newState)
|
|
|
+ if (userState.time == 0) {
|
|
|
+ clearInterval(this.timer)
|
|
|
+ this.timer = null
|
|
|
+ this.loading = false
|
|
|
+ this.$store.dispatch("user/setLoginList", [])
|
|
|
+ this.$store.dispatch("user/setLoginState", { state: false, time: 60 * PLATFROM_CONFIG.maxTime })
|
|
|
+ }
|
|
|
+ }, 1000);
|
|
|
+ },
|
|
|
+ //登录状态
|
|
|
+ getLoginState () {
|
|
|
+ const userState = this.userLoginState
|
|
|
+ const newTime = userState.time
|
|
|
+ if (newTime == 0) {
|
|
|
+ return false
|
|
|
+ } else {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ },
|
|
|
//获取动态验证码
|
|
|
async getCheckCode () {
|
|
|
const { code, message, returnData } = await getVCode({
|
|
@@ -173,7 +245,11 @@ export default {
|
|
|
$bg: #2d3a4b;
|
|
|
$dark_gray: #889aa4;
|
|
|
$light_gray: #eee;
|
|
|
-
|
|
|
+.stateError {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #f00;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
.login-container {
|
|
|
min-height: 100%;
|
|
|
width: 100%;
|