2025-03-12 13:38:44 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="welcome">
|
|
|
|
|
|
<el-container style="height: 100%;">
|
|
|
|
|
|
<!-- 保持相同的头部 -->
|
|
|
|
|
|
<el-header>
|
|
|
|
|
|
<div style="display: flex;align-items: center;margin-top: 15px;margin-left: 10px;gap: 10px;">
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" alt="" src="@/assets/xiaozhi-logo.png" style="width: 45px;height: 45px;" />
|
2025-04-05 21:22:54 +08:00
|
|
|
|
<img loading="lazy" alt="" src="@/assets/xiaozhi-ai.png" style="height: 18px;" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</el-header>
|
2025-04-05 21:22:54 +08:00
|
|
|
|
<div class="login-person">
|
|
|
|
|
|
<img loading="lazy" alt="" src="@/assets/login/login-person.png" style="width: 100%;" />
|
|
|
|
|
|
</div>
|
2025-03-12 13:38:44 +08:00
|
|
|
|
<el-main style="position: relative;">
|
|
|
|
|
|
<div class="login-box">
|
|
|
|
|
|
<!-- 修改标题部分 -->
|
|
|
|
|
|
<div style="display: flex;align-items: center;gap: 20px;margin-bottom: 39px;padding: 0 30px;">
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" alt="" src="@/assets/login/hi.png" style="width: 34px;height: 34px;" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
<div class="login-text">注册</div>
|
|
|
|
|
|
<div class="login-welcome">
|
|
|
|
|
|
WELCOME TO REGISTER
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div style="padding: 0 30px;">
|
|
|
|
|
|
<!-- 用户名输入框 -->
|
|
|
|
|
|
<div class="input-box">
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/username.png" />
|
|
|
|
|
|
<el-input v-model="form.username" placeholder="请输入用户名" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 密码输入框 -->
|
|
|
|
|
|
<div class="input-box">
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/password.png" />
|
|
|
|
|
|
<el-input v-model="form.password" placeholder="请输入密码" type="password" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 新增确认密码 -->
|
|
|
|
|
|
<div class="input-box">
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/password.png" />
|
|
|
|
|
|
<el-input v-model="form.confirmPassword" placeholder="请确认密码" type="password" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 验证码部分保持相同 -->
|
|
|
|
|
|
<div style="display: flex; align-items: center; margin-top: 20px; width: 100%; gap: 10px;">
|
|
|
|
|
|
<div class="input-box" style="width: calc(100% - 130px); margin-top: 0;">
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/shield.png" />
|
|
|
|
|
|
<el-input v-model="form.captcha" placeholder="请输入验证码" style="flex: 1;" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
</div>
|
2025-04-05 20:19:28 +08:00
|
|
|
|
<img loading="lazy" v-if="captchaUrl" :src="captchaUrl" alt="验证码"
|
|
|
|
|
|
style="width: 150px; height: 40px; cursor: pointer;" @click="fetchCaptcha" />
|
2025-03-12 13:38:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 修改底部链接 -->
|
|
|
|
|
|
<div style="font-weight: 400;font-size: 14px;text-align: left;color: #5778ff;margin-top: 20px;">
|
|
|
|
|
|
<div style="cursor: pointer;" @click="goToLogin">已有账号?立即登录</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 修改按钮文本 -->
|
|
|
|
|
|
<div class="login-btn" @click="register">立即注册</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 保持相同的协议声明 -->
|
|
|
|
|
|
<div style="font-size: 14px;color: #979db1;">
|
|
|
|
|
|
注册即同意
|
|
|
|
|
|
<div style="display: inline-block;color: #5778FF;cursor: pointer;">《用户协议》</div>
|
|
|
|
|
|
和
|
|
|
|
|
|
<div style="display: inline-block;color: #5778FF;cursor: pointer;">《隐私政策》</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-main>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 保持相同的页脚 -->
|
|
|
|
|
|
<el-footer>
|
2025-04-03 17:40:53 +08:00
|
|
|
|
<div class="copyright">
|
2025-03-12 13:38:44 +08:00
|
|
|
|
©2025 xiaozhi-esp32-server
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-footer>
|
|
|
|
|
|
</el-container>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import Api from '@/apis/api';
|
2025-04-05 20:19:28 +08:00
|
|
|
|
import { getUUID, goToPage, showDanger, showSuccess } from '@/utils';
|
2025-03-12 13:38:44 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'register',
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
form: {
|
|
|
|
|
|
username: '',
|
|
|
|
|
|
password: '',
|
|
|
|
|
|
confirmPassword: '',
|
|
|
|
|
|
captcha: '',
|
2025-03-12 23:31:59 +08:00
|
|
|
|
captchaId: ''
|
2025-03-12 13:38:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
captchaUrl: ''
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.fetchCaptcha();
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 复用验证码获取方法
|
|
|
|
|
|
fetchCaptcha() {
|
2025-03-12 23:31:59 +08:00
|
|
|
|
this.form.captchaId = getUUID();
|
|
|
|
|
|
Api.user.getCaptcha(this.form.captchaId, (res) => {
|
2025-03-12 13:38:44 +08:00
|
|
|
|
if (res.status === 200) {
|
2025-04-05 20:19:28 +08:00
|
|
|
|
const blob = new Blob([res.data], { type: res.data.type });
|
2025-03-12 13:38:44 +08:00
|
|
|
|
this.captchaUrl = URL.createObjectURL(blob);
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
console.error('验证码加载异常:', error);
|
|
|
|
|
|
showDanger('验证码加载失败,点击刷新');
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2025-03-20 16:05:06 +08:00
|
|
|
|
// 封装输入验证逻辑
|
|
|
|
|
|
validateInput(input, message) {
|
|
|
|
|
|
if (!input.trim()) {
|
|
|
|
|
|
showDanger(message);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
return true;
|
|
|
|
|
|
},
|
2025-03-12 13:38:44 +08:00
|
|
|
|
// 注册逻辑
|
|
|
|
|
|
register() {
|
2025-03-20 16:05:06 +08:00
|
|
|
|
// 验证用户名
|
|
|
|
|
|
if (!this.validateInput(this.form.username, '用户名不能为空')) {
|
|
|
|
|
|
return;
|
2025-03-12 13:38:44 +08:00
|
|
|
|
}
|
2025-03-20 16:05:06 +08:00
|
|
|
|
// 验证密码
|
|
|
|
|
|
if (!this.validateInput(this.form.password, '密码不能为空')) {
|
|
|
|
|
|
return;
|
2025-03-12 13:38:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (this.form.password !== this.form.confirmPassword) {
|
|
|
|
|
|
showDanger('两次输入的密码不一致')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-03-20 16:05:06 +08:00
|
|
|
|
// 验证验证码
|
|
|
|
|
|
if (!this.validateInput(this.form.captcha, '验证码不能为空')) {
|
|
|
|
|
|
return;
|
2025-03-12 13:38:44 +08:00
|
|
|
|
}
|
2025-03-20 16:05:06 +08:00
|
|
|
|
|
2025-04-05 20:19:28 +08:00
|
|
|
|
Api.user.register(this.form, ({ data }) => {
|
2025-03-12 13:38:44 +08:00
|
|
|
|
if (data.code === 0) {
|
|
|
|
|
|
showSuccess('注册成功!')
|
|
|
|
|
|
goToPage('/login')
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showDanger(data.msg || '注册失败')
|
|
|
|
|
|
this.fetchCaptcha()
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-03-12 23:31:59 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
this.fetchCaptcha()
|
|
|
|
|
|
}, 1000)
|
2025-03-12 13:38:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
goToLogin() {
|
|
|
|
|
|
goToPage('/login')
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2025-03-20 16:05:06 +08:00
|
|
|
|
<style lang="scss" scoped>
|
2025-04-05 20:19:28 +08:00
|
|
|
|
@import './auth.scss'; // 修改为导入新建的SCSS文件</style>
|