<template>
|
<el-form
|
class="login-form"
|
status-icon
|
:rules="loginRules"
|
ref="loginForm"
|
:model="loginForm"
|
label-width="0"
|
>
|
<el-form-item prop="phone">
|
<el-input
|
@keyup.enter="handleLogin"
|
v-model="loginForm.phone"
|
auto-complete="off"
|
:placeholder="$t('login.phone')"
|
>
|
<template #prefix>
|
<i class="icon-shouji" />
|
</template>
|
</el-input>
|
</el-form-item>
|
<el-form-item prop="code">
|
<el-input
|
@keyup.enter="handleLogin"
|
v-model="loginForm.code"
|
auto-complete="off"
|
:placeholder="$t('login.code')"
|
>
|
<template #prefix>
|
<i class="icon-yanzhengma" style="margin-top: 6px" />
|
</template>
|
<template #append>
|
<span @click="handleSend" class="msg-text" :class="[{ display: msgKey }]">{{
|
msgText
|
}}</span>
|
</template>
|
</el-input>
|
</el-form-item>
|
<el-form-item>
|
<el-button type="primary" @click.prevent="handleLogin" class="login-submit"
|
>{{ $t('login.submit') }}
|
</el-button>
|
</el-form-item>
|
</el-form>
|
</template>
|
|
<script>
|
import { isvalidatemobile } from '@/utils/validate';
|
import { mapGetters } from 'vuex';
|
|
export default {
|
name: 'codelogin',
|
data() {
|
const validatePhone = (rule, value, callback) => {
|
if (isvalidatemobile(value)[0]) {
|
callback(new Error(isvalidatemobile(value)[1]));
|
} else {
|
callback();
|
}
|
};
|
const validateCode = (rule, value, callback) => {
|
if (value.length !== 4) {
|
callback(new Error('请输入4位数的验证码'));
|
} else {
|
callback();
|
}
|
};
|
return {
|
msgText: '',
|
msgTime: '',
|
msgKey: false,
|
loginForm: {
|
phone: '',
|
code: '',
|
},
|
loginRules: {
|
phone: [{ required: true, trigger: 'blur', validator: validatePhone }],
|
code: [{ required: true, trigger: 'blur', validator: validateCode }],
|
},
|
};
|
},
|
created() {
|
this.msgText = this.config.MSGINIT;
|
this.msgTime = this.config.MSGTIME;
|
},
|
mounted() {},
|
computed: {
|
...mapGetters(['tagWel']),
|
config() {
|
return {
|
MSGINIT: this.$t('login.msgText'),
|
MSGSCUCCESS: this.$t('login.msgSuccess'),
|
MSGTIME: 60,
|
};
|
},
|
},
|
props: [],
|
methods: {
|
handleSend() {
|
if (this.msgKey) return;
|
this.msgText = this.msgTime + this.config.MSGSCUCCESS;
|
this.msgKey = true;
|
const time = setInterval(() => {
|
this.msgTime--;
|
this.msgText = this.msgTime + this.config.MSGSCUCCESS;
|
if (this.msgTime === 0) {
|
this.msgTime = this.config.MSGTIME;
|
this.msgText = this.config.MSGINIT;
|
this.msgKey = false;
|
clearInterval(time);
|
}
|
}, 1000);
|
},
|
handleLogin() {
|
this.$refs.loginForm.validate(valid => {
|
if (valid) {
|
this.$store.dispatch('LoginByPhone', this.loginForm).then(() => {
|
this.$router.push(this.tagWel);
|
});
|
}
|
});
|
},
|
},
|
};
|
</script>
|
|
<style>
|
.msg-text {
|
display: block;
|
width: 60px;
|
font-size: 12px;
|
text-align: center;
|
cursor: pointer;
|
}
|
|
.msg-text.display {
|
color: #ccc;
|
}
|
</style>
|