116 lines
3.2 KiB
Vue
116 lines
3.2 KiB
Vue
<template>
|
|
<div class="login">
|
|
<div class="loin_form">
|
|
<p>Welcome to SNCTF</p>
|
|
<el-tabs v-model="activeNames" >
|
|
<el-tab-pane label="登录" name="first">
|
|
<el-form
|
|
:model="loginForm"
|
|
:rules="loginRules"
|
|
ref="loginForm">
|
|
<el-form-item label="" prop="username" class="elItem">
|
|
<el-input
|
|
type="text"
|
|
autocomplete="off"
|
|
v-model="loginForm.username"
|
|
prefix-icon="el-icon-user-solid"
|
|
placeholder="请输入用户名"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="" prop="password">
|
|
<el-input
|
|
type="password"
|
|
autocomplete="off"
|
|
v-model="loginForm.password"
|
|
prefix-icon="el-icon-lock"
|
|
placeholder="请输入密码"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item class="btns">
|
|
<el-button type="primary" @click="goToLogin">登录</el-button>
|
|
<!-- <el-button @click="resetLoginForm">重置</el-button>-->
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="注册" name="second">
|
|
<!-- 引用注册组件-->
|
|
<register></register>
|
|
</el-tab-pane>
|
|
|
|
</el-tabs>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Register from "./register.vue";
|
|
import axios from "axios";
|
|
import { ElNotification } from 'element-plus';
|
|
|
|
export default {
|
|
data(){
|
|
return{
|
|
loginForm:{
|
|
username:'',
|
|
password:'',
|
|
},
|
|
activeNames: 'first',
|
|
loginRules:{
|
|
username: [
|
|
{ required: true, message: '请输入用户名', trigger: 'blur' },
|
|
{ min: 3, max: 10, message: '长度在 3 到 10 个字符', trigger: 'blur' }
|
|
],
|
|
password: [
|
|
{ required: true, message: '请输入密码', trigger: 'blur' },
|
|
{ min: 6, max: 20, message: '长度在 6 到 20 个字符', trigger: 'blur' }
|
|
]
|
|
},
|
|
|
|
}
|
|
},
|
|
methods:{
|
|
goToLogin(){
|
|
axios({
|
|
method:'post',
|
|
url:'/api/v1/login',
|
|
headers:{
|
|
'Content-Type':'application/json;charset=UTF-8'
|
|
},
|
|
data:{
|
|
username:this.loginForm.username,
|
|
password:this.loginForm.password
|
|
}
|
|
}).then(res=>{
|
|
console.log(res.data);
|
|
if(res.data.code===200){
|
|
this.$router.push('/home')
|
|
ElNotification({
|
|
title: '登录成功',
|
|
message: '欢迎回来',
|
|
type: 'success',
|
|
duration: 3000,
|
|
|
|
});
|
|
}else{
|
|
ElNotification({
|
|
title: '登录失败',
|
|
message: '用户名或密码错误',
|
|
type: 'error',
|
|
duration: 3000,
|
|
|
|
});
|
|
}
|
|
}).catch(err=>{
|
|
ElNotification({
|
|
title: '登录失败',
|
|
message: '用户访问错误',
|
|
type: 'error',
|
|
duration: 3000,
|
|
|
|
});
|
|
console.log(err)
|
|
})
|
|
}
|
|
},
|
|
components: {Register}
|
|
}
|
|
</script> |