|
|
<template>
|
|
|
<div class="bg">
|
|
|
<div class="logo-box">
|
|
|
<img src="@/assets/images/logo.png" alt="" />
|
|
|
<span class="title">智慧商城后台管理系统</span>
|
|
|
</div>
|
|
|
<div class="login-box">
|
|
|
<a-row>
|
|
|
<a-col class="box-b" v-if="status === 1">
|
|
|
<a-tabs v-model="activeName">
|
|
|
<a-tab-pane key="1" tab="密码登录"></a-tab-pane>
|
|
|
<a-tab-pane key="2" tab="验证码登录"> </a-tab-pane>
|
|
|
</a-tabs>
|
|
|
<div style="height: 40px"></div>
|
|
|
<div class="login-input" v-if="activeName === '1'">
|
|
|
<span class="form">
|
|
|
<a-input v-model="pwdLogin.username" placeholder="请输入手机号码"></a-input>
|
|
|
<a-input v-model="pwdLogin.password" type="password" placeholder="请输入密码"></a-input>
|
|
|
</span>
|
|
|
<a-button
|
|
|
type="primary"
|
|
|
@click="passwordLogin"
|
|
|
style="
|
|
|
width: 90%;
|
|
|
margin-left: 30px;
|
|
|
margin-top: 20px;
|
|
|
height:38px;
|
|
|
margin-bottom: 10px;
|
|
|
"
|
|
|
>
|
|
|
登录
|
|
|
</a-button>
|
|
|
<a-row style="margin-top: 20px; margin-left: 23px">
|
|
|
<a-col :span="24">
|
|
|
<a-checkbox v-model="isChecked"></a-checkbox> 我已同意
|
|
|
<a href="/#/rule" target="tar">《用户协议》</a>
|
|
|
<a href="/#/yszc" target="tar">《隐私政策》</a>
|
|
|
</a-col>
|
|
|
<a-col :span="24" style="margin-top:16px">
|
|
|
<!-- <span class="logintext" @click="status = 3">忘记密码</span> -->
|
|
|
<span class="logintext" @click="status = 2">免费注册</span>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</div>
|
|
|
<div class="login-input" v-else-if="activeName === '2'">
|
|
|
<span class="form">
|
|
|
<a-input
|
|
|
placeholder="请输入手机号码"
|
|
|
v-model="form.tel"
|
|
|
></a-input>
|
|
|
<a-input
|
|
|
placeholder="请输入验证码"
|
|
|
v-model="form.code"
|
|
|
style="width: 60%"
|
|
|
></a-input>
|
|
|
</span>
|
|
|
<a-button type="primary" @click="getCode" :disabled="inCodeGap">
|
|
|
{{inCodeGap == false ? '获取验证码' : codeGap+'s后再次获取'}}
|
|
|
</a-button>
|
|
|
<a-button
|
|
|
type="primary"
|
|
|
@click="login"
|
|
|
style="
|
|
|
width: 90%;
|
|
|
margin-left: 30px;
|
|
|
margin-top: 20px;
|
|
|
height:38px;
|
|
|
margin-bottom: 10px;
|
|
|
"
|
|
|
>
|
|
|
登录
|
|
|
</a-button>
|
|
|
<a-row style="margin-top: 20px; margin-left: 23px">
|
|
|
<a-col :span="22">
|
|
|
<a-checkbox v-model="isChecked"></a-checkbox> 我已同意
|
|
|
<a href="/#/rule" target="tar">《用户协议》</a>
|
|
|
<a href="/#/yszc" target="tar">《隐私政策》</a>
|
|
|
</a-col>
|
|
|
<a-col :span="2">
|
|
|
<!-- <span class="logintext" @click="status = 3">忘记密码</span
|
|
|
> <span
|
|
|
class="logintext"
|
|
|
@click="status = 2"
|
|
|
>免费注册</span
|
|
|
> -->
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
<!-- 注册 -->
|
|
|
<a-col class="box-b" v-if="status === 2">
|
|
|
<div class="cardTitle">新建账号</div>
|
|
|
<a-form-model
|
|
|
ref="ruleForm"
|
|
|
:model="signInForm"
|
|
|
:rules="rules"
|
|
|
layout="vertical"
|
|
|
>
|
|
|
<a-form-model-item ref="tel" label="手机号码" prop="tel">
|
|
|
<a-input
|
|
|
v-model="signInForm.tel"
|
|
|
style="width: 100%"
|
|
|
placeholder="请输入手机号"
|
|
|
@blur="
|
|
|
() => {
|
|
|
$refs.tel.onFieldBlur();
|
|
|
}
|
|
|
"
|
|
|
/>
|
|
|
<a-row style="margin-top: 20px">
|
|
|
<a-col :span="16" style="margin-right: 10px">
|
|
|
<a-input
|
|
|
style="width: 100%"
|
|
|
v-model="signInForm.code"
|
|
|
placeholder="请输入验证码"
|
|
|
/>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
<a-button type="primary" @click="getCode" :disabled="inCodeGap">
|
|
|
{{inCodeGap == false ? '获取验证码' : codeGap+'s后再次获取'}}
|
|
|
</a-button>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="设置密码" prop="psw">
|
|
|
<a-input v-model="signInForm.password" placeholder="请输入密码" />
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="确认密码" prop="confirmPsw">
|
|
|
<a-input v-model="comfirmPassword" placeholder="请再次输入密码" />
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item>
|
|
|
<a-button type="primary" @click="signInComfirm" style="width: 100%"> 确定 </a-button>
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item>
|
|
|
<span>已有账号?</span
|
|
|
><span class="logintext" @click="status = 1">登录</span>
|
|
|
</a-form-model-item>
|
|
|
</a-form-model>
|
|
|
</a-col>
|
|
|
<!-- 找回密码 -->
|
|
|
<!-- <a-col class="box-b" v-if="status === 3">
|
|
|
<div class="cardTitle">找回密码</div>
|
|
|
<a-form-model
|
|
|
ref="ruleForm"
|
|
|
:model="form"
|
|
|
:rules="rules"
|
|
|
layout="vertical"
|
|
|
>
|
|
|
<a-form-model-item ref="tel" label="手机号码" prop="tel">
|
|
|
<a-input
|
|
|
v-model="form.tel"
|
|
|
style="width: 100%"
|
|
|
placeholder="请输入手机号"
|
|
|
@blur="
|
|
|
() => {
|
|
|
$refs.tel.onFieldBlur();
|
|
|
}
|
|
|
"
|
|
|
/>
|
|
|
<a-row style="margin-top: 20px">
|
|
|
<a-col :span="16" style="margin-right: 10px">
|
|
|
<a-input
|
|
|
style="width: 100%"
|
|
|
v-model="form.verificationCode"
|
|
|
placeholder="请输入验证码"
|
|
|
/>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
<a-button type="primary" @click="getCode" :disabled="inCodeGap">
|
|
|
{{inCodeGap == false ? '获取验证码' : codeGap+'s后再次获取'}}
|
|
|
</a-button>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="设置密码" prop="psw">
|
|
|
<a-input placeholder="请输入密码" />
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="确认密码" prop="confirmPsw">
|
|
|
<a-input placeholder="请再次输入密码" />
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item>
|
|
|
<a-button type="primary" style="width: 100%"> 确定 </a-button>
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item>
|
|
|
<span>已有账号?</span
|
|
|
><span class="logintext" @click="status = 1">登录</span>
|
|
|
</a-form-model-item>
|
|
|
</a-form-model>
|
|
|
</a-col> -->
|
|
|
</a-row>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { register, sendTelCode, loginSendCode, loginPWD, loginTC } from "@/api/login/index.js"
|
|
|
import { userInfo } from "@/api/public/index.js"
|
|
|
export default {
|
|
|
name: "Login",
|
|
|
data() {
|
|
|
return {
|
|
|
status: 1,
|
|
|
activeName: "2",
|
|
|
form: {
|
|
|
tel: "",
|
|
|
code: "",
|
|
|
},
|
|
|
signInForm: {
|
|
|
tel: '',
|
|
|
password: '',
|
|
|
code: ''
|
|
|
},
|
|
|
comfirmPassword: '',
|
|
|
pwdLogin: {
|
|
|
username: '',
|
|
|
password: '',
|
|
|
},
|
|
|
isChecked: false,
|
|
|
rules: {
|
|
|
tel: [
|
|
|
{
|
|
|
required: true,
|
|
|
message: "请输入手机号",
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
{
|
|
|
min: 11,
|
|
|
max: 11,
|
|
|
message: "姓名长度必须为 11 位",
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
],
|
|
|
name: [
|
|
|
{
|
|
|
required: true,
|
|
|
message: "请输入姓名",
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
{
|
|
|
min: 3,
|
|
|
max: 5,
|
|
|
message: "姓名长度必须为 3 至 5位",
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
inCodeGap: false,
|
|
|
codeGap: 60,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
this.keyupEnter();
|
|
|
},
|
|
|
methods: {
|
|
|
// 绑定enter事件
|
|
|
keyupEnter() {
|
|
|
document.onkeydown = (e) => {
|
|
|
if (e.keyCode === 13 && e.target.baseURI.match(/loginTel/)) {
|
|
|
//回车后执行搜索方法
|
|
|
this.login();
|
|
|
}
|
|
|
};
|
|
|
},
|
|
|
login() {
|
|
|
if (this.isChecked == false) {
|
|
|
this.$message.error("请阅读并同意《用户协议》");
|
|
|
return;
|
|
|
};
|
|
|
loginTC(this.pwdLogin).then(res => {
|
|
|
if(res.code == 200) {
|
|
|
this.$message.success(res.msg);
|
|
|
// 存储token
|
|
|
this.setToken(res.data);
|
|
|
userInfo().then(result => {
|
|
|
this.setUserInfo(result.data);
|
|
|
this.$router.push("/");
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
passwordLogin() {
|
|
|
if (this.isChecked == false) {
|
|
|
this.$message.error("请阅读并同意《用户协议》");
|
|
|
return;
|
|
|
};
|
|
|
loginPWD(this.pwdLogin).then(res => {
|
|
|
if(res.code == 200) {
|
|
|
this.$message.success(res.msg);
|
|
|
// 存储token
|
|
|
this.setToken(res.data);
|
|
|
userInfo().then(result => {
|
|
|
this.setUserInfo(result.data);
|
|
|
this.$router.push("/");
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
// 获取验证码
|
|
|
getCode() {
|
|
|
let num = setInterval(() => {
|
|
|
this.inCodeGap = true;
|
|
|
this.codeGap -= 1;
|
|
|
if(this.codeGap < 1) {
|
|
|
clearInterval(num);
|
|
|
if(this.codeGap < 1) {
|
|
|
this.inCodeGap = false;
|
|
|
this.codeGap = 60;
|
|
|
}
|
|
|
}
|
|
|
},1000)
|
|
|
if(this.status == 2) {
|
|
|
sendTelCode({tel: this.signInForm.tel}).then(res => {
|
|
|
if(res) {
|
|
|
this.$message.success(res.msg);
|
|
|
}
|
|
|
})
|
|
|
} else if (this.status == 1) {
|
|
|
loginSendCode({tel: this.form.tel}).then(res => {
|
|
|
if(res) {
|
|
|
this.$message.success(res.msg);
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
onSubmit() {
|
|
|
this.$refs.ruleForm.validate((valid) => {
|
|
|
if (valid) {
|
|
|
alert("submit!");
|
|
|
} else {
|
|
|
console.log("error submit!!");
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
//注册确定
|
|
|
signInComfirm() {
|
|
|
if(this.signInForm.password == this.comfirmPassword) {
|
|
|
register(this.signInForm).then(res => {
|
|
|
if(res.code == 200) {
|
|
|
this.status == 1;
|
|
|
this.$message.success(res.msg);
|
|
|
this.signInForm = {
|
|
|
tel: '',
|
|
|
password: '',
|
|
|
code: ''
|
|
|
};
|
|
|
this.comfirmPassword = '';
|
|
|
} else {
|
|
|
this.$message.error(res.msg);
|
|
|
}
|
|
|
})
|
|
|
} else {
|
|
|
this.$message.error('两次密码输入不一致')
|
|
|
}
|
|
|
},
|
|
|
// 重置
|
|
|
resetForm() {
|
|
|
this.$refs.ruleForm.resetFields();
|
|
|
},
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
.bg {
|
|
|
background-image: url(../../assets/images/loginBg.png);
|
|
|
height: 100vh;
|
|
|
background-size: cover;
|
|
|
}
|
|
|
.logo-box {
|
|
|
text-align: left;
|
|
|
background: #ffffff;
|
|
|
width: 100%;
|
|
|
height: 93px;
|
|
|
line-height: 93px;
|
|
|
margin-bottom: 93px;
|
|
|
img {
|
|
|
width: 51px;
|
|
|
height: 51px;
|
|
|
background: #ffffff;
|
|
|
margin-left: 42px;
|
|
|
margin-bottom: 13px;
|
|
|
}
|
|
|
.title {
|
|
|
font-size: 28px;
|
|
|
color: #333333;
|
|
|
font-weight: 500;
|
|
|
margin-left: 20px;
|
|
|
line-height: 93px;
|
|
|
}
|
|
|
}
|
|
|
.login-box {
|
|
|
background: #ffffff;
|
|
|
height: 480px;
|
|
|
width: 489px;
|
|
|
margin: auto;
|
|
|
}
|
|
|
.box-a {
|
|
|
height: 500px;
|
|
|
padding: 10px;
|
|
|
}
|
|
|
.box-cen {
|
|
|
background: #e5e5e5;
|
|
|
height: 500px;
|
|
|
}
|
|
|
.box-b {
|
|
|
height: 500px;
|
|
|
text-align: left;
|
|
|
padding: 30px;
|
|
|
}
|
|
|
.cardTitle {
|
|
|
margin-left: -10px;
|
|
|
font-size: 18px;
|
|
|
color: #000000;
|
|
|
font-weight: 500;
|
|
|
margin-bottom: 40px;
|
|
|
}
|
|
|
.logintext {
|
|
|
color: #205fbd;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
/deep/.ant-form-item {
|
|
|
margin-top: -10px;
|
|
|
}
|
|
|
.login-input .form {
|
|
|
text-align: left;
|
|
|
margin-top: 20px;
|
|
|
/deep/.ant-input {
|
|
|
border: 0px;
|
|
|
border-bottom: 1px solid #f4eded;
|
|
|
border-radius: 0;
|
|
|
width: 90%;
|
|
|
margin-left: 25px;
|
|
|
margin-bottom: 20px;
|
|
|
}
|
|
|
/deep/.ant-select {
|
|
|
border: 0px;
|
|
|
border-bottom: 1px solid #f4eded;
|
|
|
border-radius: 0;
|
|
|
width: 90%;
|
|
|
margin-left: 25px;
|
|
|
margin-top: 15px;
|
|
|
margin-bottom: 15px;
|
|
|
}
|
|
|
}
|
|
|
/deep/.ant-cascader-picker {
|
|
|
text-align: left;
|
|
|
margin-top: 20px;
|
|
|
margin-left: 25px;
|
|
|
width: 90%;
|
|
|
}
|
|
|
</style>
|