first commit
This commit is contained in:
parent
0348969a99
commit
96b870951a
@ -71,8 +71,12 @@
|
||||
</el-link>
|
||||
</el-col>
|
||||
<el-col v-else>
|
||||
<el-link :underline="false" style="margin-left: 10px;" href="/login">登录</el-link>
|
||||
<el-link :underline="false" style="margin-left: 10px;" href="/register">注册</el-link>
|
||||
<nuxt-link to="login">
|
||||
<el-link :underline="false" style="margin-left: 10px;">登录</el-link>
|
||||
</nuxt-link>
|
||||
<nuxt-link to="register">
|
||||
<el-link :underline="false" style="margin-left: 10px;">注册</el-link>
|
||||
</nuxt-link>
|
||||
</el-col>
|
||||
</el-col>
|
||||
</el-col>
|
||||
|
169
pages/login.vue
Normal file
169
pages/login.vue
Normal file
@ -0,0 +1,169 @@
|
||||
<template>
|
||||
<el-row class="wrapper verify" style="background-color: #F6F7F8;padding-top: 10%;">
|
||||
<el-col :xs="24" :sm="12" :xl="12" class="verify-wrap flex-inline">
|
||||
<el-form :model="user" ref="user" status-icon label-width="100px" style="width: 375px;">
|
||||
<el-form-item>
|
||||
<img src="~/assets/rymcu.png" alt="RYMCU" class="icon-rymcu">
|
||||
</el-form-item>
|
||||
<el-form-item label="账号" prop="account" :rules="[{ required: true, message: '请输入账号', trigger: 'blur' }]">
|
||||
<el-input v-model="user.account" autocomplete="off"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="密码" prop="password" :rules="[{ required: true, message: '请输入密码', trigger: 'blur' }]">
|
||||
<el-input type="password" v-model="user.password" autocomplete="off" show-password></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-link style="float: right;" :underline="false" @click="forgetPassword">忘记密码</el-link>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button style="width: 60%;" type="primary" @click="login">立即登录</el-button>
|
||||
<el-button style="width: 32%;" @click="register">注册</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-col>
|
||||
<el-col :xs="24" :sm="12" :xl="12" class="intro vditor-reset verify__sign">
|
||||
<div>
|
||||
<h2>欢迎来到 RYMCU</h2>
|
||||
<p><a href="/">RYMCU</a> 是一个嵌入式知识共享平台,专注于单片机学习。</p>
|
||||
<p>我们正在构建一个小众社区。大家在这里相互<strong>信任</strong>,以<em>平等 • 自由 • 奔放</em>的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。</p>
|
||||
<p>最后请大家共同爱护这个<i>自由</i>的交流环境,相信这里一定是你注册过的所有社区中用户体验最好的 😍</p>
|
||||
</div>
|
||||
</el-col>
|
||||
<el-dialog
|
||||
title="找回密码"
|
||||
:visible.sync="forget"
|
||||
width="475px"
|
||||
:before-close="hideForgetPasswordDialog"
|
||||
center>
|
||||
<el-form :model="forgetForm" ref="forgetForm" status-icon label-width="100px"
|
||||
style="align-items: center;max-width: 375px;">
|
||||
<el-form-item label="邮箱" prop="email"
|
||||
:rules="[
|
||||
{ required: true, message: '请输入邮箱地址', trigger: 'blur' },
|
||||
{ type: 'email', message: '请输入正确的邮箱地址', trigger: ['blur', 'change'] }]">
|
||||
<el-input v-model="forgetForm.email" autocomplete="off"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item style="text-align: center;">
|
||||
<el-button :loading="loading" @click.native="sendEmailCode" type="success">发送</el-button>
|
||||
<el-button :loading="loading" @click.native="hideForgetPasswordDialog">取消</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-dialog>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "login",
|
||||
data() {
|
||||
return {
|
||||
user: {
|
||||
account: '',
|
||||
password: ''
|
||||
},
|
||||
forgetForm: {
|
||||
email: ''
|
||||
},
|
||||
forget: false,
|
||||
loading: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
login() {
|
||||
let _ts = this;
|
||||
_ts.$refs.user.validate((valid) => {
|
||||
if (valid) {
|
||||
let data = {
|
||||
account: _ts.user.account,
|
||||
password: _ts.user.password
|
||||
}
|
||||
|
||||
_ts.axios.post('/console/login', _ts.qs.stringify(data)).then(function (res) {
|
||||
if (res) {
|
||||
if (res.message) {
|
||||
_ts.$message(res.message);
|
||||
return false;
|
||||
}
|
||||
_ts.$store.commit('initLogin', res.user);
|
||||
_ts.$router.push({
|
||||
name: 'home'
|
||||
})
|
||||
}
|
||||
})
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
},
|
||||
register() {
|
||||
this.$router.push(
|
||||
{
|
||||
name: 'register'
|
||||
}
|
||||
)
|
||||
},
|
||||
forgetPassword() {
|
||||
this.forget = true;
|
||||
},
|
||||
hideForgetPasswordDialog() {
|
||||
this.forget = false;
|
||||
},
|
||||
sendEmailCode() {
|
||||
let _ts = this;
|
||||
_ts.loading = true;
|
||||
let email = _ts.forgetForm.email;
|
||||
if (!email) {
|
||||
return false
|
||||
}
|
||||
let data = {
|
||||
email: email
|
||||
};
|
||||
_ts.axios.post('/console/get-forget-password-email', _ts.qs.stringify(data)).then(function (res) {
|
||||
_ts.loading = false;
|
||||
_ts.forget = false;
|
||||
if (res) {
|
||||
_ts.$message(res.message)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.icon-rymcu {
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.verify .verify-wrap {
|
||||
/*width: 60%;*/
|
||||
}
|
||||
|
||||
.flex-inline {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.verify .intro {
|
||||
padding: 50px;
|
||||
background-color: #f1f7fe;
|
||||
/*width: 40%;*/
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
.verify__sign {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.vditor-reset {
|
||||
font-variant-ligatures: no-common-ligatures;
|
||||
font-family: Helvetica Neue, Luxi Sans, DejaVu Sans, Tahoma, Hiragino Sans GB, Microsoft Yahei, sans-serif, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
||||
word-wrap: break-word;
|
||||
overflow: auto;
|
||||
line-height: 1.5;
|
||||
font-size: 16px;
|
||||
word-break: break-word;
|
||||
}
|
||||
</style>
|
149
pages/register.vue
Normal file
149
pages/register.vue
Normal file
@ -0,0 +1,149 @@
|
||||
<template>
|
||||
<el-row class="wrapper verify" style="background-color: #F6F7F8;padding-top: 10%;">
|
||||
<el-col :xs="24" :sm="12" :xl="12" class="verify-wrap flex-inline">
|
||||
<el-form :model="user" ref="user" status-icon label-width="100px" style="width: 375px;">
|
||||
<el-form-item>
|
||||
<img src="~/assets/rymcu.png" alt="RYMCU" class="icon-rymcu">
|
||||
</el-form-item>
|
||||
<el-form-item label="邮箱" prop="email"
|
||||
:rules="[
|
||||
{ required: true, message: '请输入邮箱地址', trigger: 'blur' },
|
||||
{ type: 'email', message: '请输入正确的邮箱地址', trigger: ['blur', 'change'] }]">
|
||||
<el-input v-model="user.email" autocomplete="off"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="密码" prop="password" :rules="[{ required: true, message: '请输入密码', trigger: 'blur' }]">
|
||||
<el-input type="password" v-model="user.password" autocomplete="off" show-password></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="确认密码" prop="confirmPassword"
|
||||
:rules="[{ required: true, message: '请输入确认密码', trigger: 'blur' }]">
|
||||
<el-input type="password" v-model="user.confirmPassword" autocomplete="off" show-password></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="验证码" prop="code" :rules="[{ required: true, message: '请输入验证码', trigger: 'blur' }]">
|
||||
<el-input v-model="user.code" maxlength="6" autocomplete="off">
|
||||
<el-button type="email" size="small" slot="append" @click="sendCode">发送验证码</el-button>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button style="width: 60%;" type="primary" @click="register">立即注册</el-button>
|
||||
<el-button style="width: 32%;" @click="login">登录</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-col>
|
||||
<el-col :xs="24" :sm="12" :xl="12" class="intro vditor-reset verify__sign">
|
||||
<div>
|
||||
<h2>欢迎来到 RYMCU</h2>
|
||||
<p><a href="/">RYMCU</a> 是一个嵌入式知识共享平台,专注于单片机学习。</p>
|
||||
<p>我们正在构建一个小众社区。大家在这里相互<strong>信任</strong>,以<em>平等 • 自由 • 奔放</em>的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。</p>
|
||||
<p>最后请大家共同爱护这个<i>自由</i>的交流环境,相信这里一定是你注册过的所有社区中用户体验最好的 😍</p>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "register",
|
||||
data() {
|
||||
return {
|
||||
user: {
|
||||
email: '',
|
||||
code: '',
|
||||
password: '',
|
||||
confirmPassword: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
sendCode() {
|
||||
let _ts = this;
|
||||
let email = _ts.user.email;
|
||||
if (!email) {
|
||||
return false
|
||||
}
|
||||
let data = {
|
||||
email: encodeURI(email)
|
||||
}
|
||||
_ts.$axios.$post('/api/v1/console/get-email-code', data).then(response => {
|
||||
if (response.data) {
|
||||
_ts.$message(response.data.message)
|
||||
}
|
||||
}).catch(error=>{ console.log(error) })
|
||||
},
|
||||
register() {
|
||||
let _ts = this;
|
||||
_ts.$refs.user.validate((valid) => {
|
||||
if (valid) {
|
||||
let data = {
|
||||
email: _ts.user.email,
|
||||
password: _ts.user.password,
|
||||
code: _ts.user.code
|
||||
}
|
||||
_ts.$axios.$post('/console/register', _ts.qs.stringify(data)).then(function (res) {
|
||||
if (res) {
|
||||
_ts.$message(res.message);
|
||||
if (res.flag && res.flag === 1) {
|
||||
setTimeout(function () {
|
||||
_ts.$router.push(
|
||||
{
|
||||
name: 'login'
|
||||
}
|
||||
)
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
},
|
||||
login() {
|
||||
this.$router.push(
|
||||
{
|
||||
name: 'login'
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.icon-rymcu {
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.verify .verify-wrap {
|
||||
/*width: 60%;*/
|
||||
}
|
||||
|
||||
.flex-inline {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.verify .intro {
|
||||
padding: 50px;
|
||||
background-color: #f1f7fe;
|
||||
/*width: 40%;*/
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
.verify__sign {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.vditor-reset {
|
||||
font-variant-ligatures: no-common-ligatures;
|
||||
font-family: Helvetica Neue, Luxi Sans, DejaVu Sans, Tahoma, Hiragino Sans GB, Microsoft Yahei, sans-serif, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
||||
word-wrap: break-word;
|
||||
overflow: auto;
|
||||
line-height: 1.5;
|
||||
font-size: 16px;
|
||||
word-break: break-word;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user