94 lines
3.3 KiB
Vue
94 lines
3.3 KiB
Vue
<template>
|
|
<div class="wrapper">
|
|
<div style="height: 60px; line-height: 60px; font-size: 20px; padding-left: 50px; color: white;
|
|
background-color: rgba(0,0,0,0.2)">诺力售后管理平台</div>
|
|
<div style="margin: 150px auto; background-color: #fff; width: 350px; height: 340px; padding: 20px; border-radius: 10px">
|
|
<div style="margin: 20px 0; text-align: center; font-size: 24px"><b>注 册</b></div>
|
|
<el-form :model="user" :rules="rules" ref="userForm">
|
|
<el-form-item prop="username">
|
|
<el-input placeholder="请输入账号" size="medium" prefix-icon="el-icon-user" v-model="user.username"></el-input>
|
|
</el-form-item>
|
|
<el-form-item prop="password">
|
|
<el-input placeholder="请输入密码" size="medium" prefix-icon="el-icon-lock" show-password v-model="user.password"></el-input>
|
|
</el-form-item>
|
|
<el-form-item prop="confirmPassword">
|
|
<el-input placeholder="请确认密码" size="medium" prefix-icon="el-icon-lock" show-password v-model="user.confirmPassword"></el-input>
|
|
</el-form-item>
|
|
<el-form-item style="margin: 5px 0; text-align: right">
|
|
<el-button type="warning" size="small" autocomplete="off" @click="$router.push('/login')">返回登录</el-button>
|
|
<el-button type="primary" size="small" autocomplete="off" @click="login">注册</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Login",
|
|
data() {
|
|
return {
|
|
user: {},
|
|
rules: {
|
|
username: [
|
|
{ required: true, message: '请输入用户名', trigger: 'blur' },
|
|
{ min: 3, max: 10, message: '长度在 3 到 5 个字符', trigger: 'blur' }
|
|
],
|
|
password: [
|
|
{ required: true, message: '请输入密码', trigger: 'blur' },
|
|
{ min: 1, max: 20, message: '长度在 1 到 20 个字符', trigger: 'blur' }
|
|
],
|
|
confirmPassword: [
|
|
{ required: true, message: '请输入密码', trigger: 'blur' },
|
|
{ min: 1, max: 20, message: '长度在 1 到 20 个字符', trigger: 'blur' }
|
|
],
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
login() {
|
|
this.$refs['userForm'].validate((valid) => {
|
|
if (valid) { // 表单校验合法
|
|
if (this.user.password !== this.user.confirmPassword) {
|
|
this.$message.error("两次输入的密码不一致")
|
|
return false
|
|
}
|
|
|
|
|
|
this.$http({
|
|
url: this.$http.adornUrl(`/web/save`),
|
|
method: 'post',
|
|
data: this.$http.adornData({
|
|
'username': this.user.username,
|
|
'password': this.user.password
|
|
})
|
|
}).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {
|
|
this.visible = false
|
|
this.$router.push('/login')
|
|
}
|
|
})
|
|
} else {
|
|
this.$message.error(data.msg)
|
|
}
|
|
})
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.wrapper {
|
|
height: 100vh;
|
|
background-image: linear-gradient(to bottom right, #4169E1 , #87CEFA);
|
|
overflow: hidden;
|
|
}
|
|
</style>
|