mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 23:23:55 +08:00
321 lines
11 KiB
Vue
321 lines
11 KiB
Vue
<template>
|
|
<div class="welcome" @keyup.enter="register">
|
|
<el-container style="height: 100%;">
|
|
<!-- 保持相同的头部 -->
|
|
<el-header>
|
|
<div style="display: flex;align-items: center;margin-top: 15px;margin-left: 10px;gap: 10px;">
|
|
<img loading="lazy" alt="" src="@/assets/xiaozhi-logo.png" style="width: 45px;height: 45px;" />
|
|
<img loading="lazy" alt="" src="@/assets/xiaozhi-ai.png" style="height: 18px;" />
|
|
</div>
|
|
</el-header>
|
|
<div class="login-person">
|
|
<img loading="lazy" alt="" src="@/assets/login/register-person.png" style="width: 100%;" />
|
|
</div>
|
|
<el-main style="position: relative;">
|
|
<div class="login-box">
|
|
<!-- 修改标题部分 -->
|
|
<div style="display: flex;align-items: center;gap: 20px;margin-bottom: 39px;padding: 0 30px;">
|
|
<img loading="lazy" alt="" src="@/assets/login/hi.png" style="width: 34px;height: 34px;" />
|
|
<div class="login-text">{{ $t('register.title') }}</div>
|
|
<div class="login-welcome">
|
|
{{ $t('register.welcome') }}
|
|
</div>
|
|
</div>
|
|
|
|
<div style="padding: 0 30px;">
|
|
<form @submit.prevent="register">
|
|
<!-- 用户名/手机号输入框 -->
|
|
<div class="input-box" v-if="!enableMobileRegister">
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/username.png" />
|
|
<el-input v-model="form.username" :placeholder="$t('register.usernamePlaceholder')" />
|
|
</div>
|
|
|
|
<!-- 手机号注册部分 -->
|
|
<template v-if="enableMobileRegister">
|
|
<div class="input-box">
|
|
<div style="display: flex; align-items: center; width: 100%;">
|
|
<el-select v-model="form.areaCode" style="width: 220px; margin-right: 10px;">
|
|
<el-option v-for="item in mobileAreaList" :key="item.key" :label="`${item.name} (${item.key})`"
|
|
:value="item.key" />
|
|
</el-select>
|
|
<el-input v-model="form.mobile" :placeholder="$t('register.mobilePlaceholder')" />
|
|
</div>
|
|
</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;">
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/shield.png" />
|
|
<el-input v-model="form.captcha" :placeholder="$t('register.captchaPlaceholder')" style="flex: 1;" />
|
|
</div>
|
|
<img loading="lazy" v-if="captchaUrl" :src="captchaUrl" alt="验证码"
|
|
style="width: 150px; height: 40px; cursor: pointer;" @click="fetchCaptcha" />
|
|
</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;">
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/phone.png" />
|
|
<el-input v-model="form.mobileCaptcha" :placeholder="$t('register.mobileCaptchaPlaceholder')" style="flex: 1;" maxlength="6" />
|
|
</div>
|
|
<el-button type="primary" class="send-captcha-btn" :disabled="!canSendMobileCaptcha"
|
|
@click="sendMobileCaptcha">
|
|
<span>
|
|
{{ countdown > 0 ? `${countdown}${$t('register.secondsLater')}` : $t('register.sendCaptcha') }}
|
|
</span>
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- 密码输入框 -->
|
|
<div class="input-box">
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/password.png" />
|
|
<el-input v-model="form.password" :placeholder="$t('register.passwordPlaceholder')" type="password" show-password />
|
|
</div>
|
|
|
|
<!-- 新增确认密码 -->
|
|
<div class="input-box">
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/password.png" />
|
|
<el-input v-model="form.confirmPassword" :placeholder="$t('register.confirmPasswordPlaceholder')" type="password" show-password />
|
|
</div>
|
|
|
|
<!-- 验证码部分保持相同 -->
|
|
<div v-if="!enableMobileRegister"
|
|
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;">
|
|
<img loading="lazy" alt="" class="input-icon" src="@/assets/login/shield.png" />
|
|
<el-input v-model="form.captcha" :placeholder="$t('register.captchaPlaceholder')" style="flex: 1;" />
|
|
</div>
|
|
<img loading="lazy" v-if="captchaUrl" :src="captchaUrl" alt="验证码"
|
|
style="width: 150px; height: 40px; cursor: pointer;" @click="fetchCaptcha" />
|
|
</div>
|
|
|
|
<!-- 修改底部链接 -->
|
|
<div style="font-weight: 400;font-size: 14px;text-align: left;color: #5778ff;margin-top: 20px;">
|
|
<div style="cursor: pointer;" @click="goToLogin">{{ $t('register.goToLogin') }}</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- 修改按钮文本 -->
|
|
<div class="login-btn" @click="register">{{ $t('register.registerButton') }}</div>
|
|
|
|
<!-- 保持相同的协议声明 -->
|
|
<div style="font-size: 14px;color: #979db1;">
|
|
{{ $t('register.agreeTo') }}
|
|
<div style="display: inline-block;color: #5778FF;cursor: pointer;">{{ $t('register.userAgreement') }}</div>
|
|
{{ $t('register.and') }}
|
|
<div style="display: inline-block;color: #5778FF;cursor: pointer;">{{ $t('register.privacyPolicy') }}</div>
|
|
</div>
|
|
</div>
|
|
</el-main>
|
|
|
|
<!-- 保持相同的页脚 -->
|
|
<el-footer>
|
|
<version-footer />
|
|
</el-footer>
|
|
</el-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Api from '@/apis/api';
|
|
import VersionFooter from '@/components/VersionFooter.vue';
|
|
import { getUUID, goToPage, showDanger, showSuccess, validateMobile } from '@/utils';
|
|
import { mapState } from 'vuex';
|
|
|
|
// 导入语言切换功能
|
|
import { changeLanguage } from '@/i18n';
|
|
|
|
export default {
|
|
name: 'register',
|
|
components: {
|
|
VersionFooter
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
allowUserRegister: state => state.pubConfig.allowUserRegister,
|
|
enableMobileRegister: state => state.pubConfig.enableMobileRegister,
|
|
mobileAreaList: state => state.pubConfig.mobileAreaList
|
|
}),
|
|
canSendMobileCaptcha() {
|
|
return this.countdown === 0 && validateMobile(this.form.mobile, this.form.areaCode);
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
form: {
|
|
username: '',
|
|
password: '',
|
|
confirmPassword: '',
|
|
captcha: '',
|
|
captchaId: '',
|
|
areaCode: '+86',
|
|
mobile: '',
|
|
mobileCaptcha: ''
|
|
},
|
|
captchaUrl: '',
|
|
countdown: 0,
|
|
timer: null
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$store.dispatch('fetchPubConfig').then(() => {
|
|
if (!this.allowUserRegister) {
|
|
showDanger(this.$t('register.notAllowRegister'));
|
|
setTimeout(() => {
|
|
goToPage('/login');
|
|
}, 1500);
|
|
}
|
|
});
|
|
this.fetchCaptcha();
|
|
},
|
|
methods: {
|
|
// 复用验证码获取方法
|
|
fetchCaptcha() {
|
|
this.form.captchaId = getUUID();
|
|
Api.user.getCaptcha(this.form.captchaId, (res) => {
|
|
if (res.status === 200) {
|
|
const blob = new Blob([res.data], { type: res.data.type });
|
|
this.captchaUrl = URL.createObjectURL(blob);
|
|
|
|
} else {
|
|
console.error('验证码加载异常:', error);
|
|
showDanger(this.$t('register.captchaLoadFailed'));
|
|
}
|
|
});
|
|
},
|
|
|
|
// 封装输入验证逻辑
|
|
validateInput(input, message) {
|
|
if (!input.trim()) {
|
|
showDanger(message);
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
|
|
// 发送手机验证码
|
|
sendMobileCaptcha() {
|
|
if (!validateMobile(this.form.mobile, this.form.areaCode)) {
|
|
showDanger(this.$t('register.inputCorrectMobile'));
|
|
return;
|
|
}
|
|
|
|
// 验证图形验证码
|
|
if (!this.validateInput(this.form.captcha, this.$t('register.inputCaptcha'))) {
|
|
this.fetchCaptcha();
|
|
return;
|
|
}
|
|
|
|
// 清除可能存在的旧定时器
|
|
if (this.timer) {
|
|
clearInterval(this.timer);
|
|
this.timer = null;
|
|
}
|
|
|
|
// 开始倒计时
|
|
this.countdown = 60;
|
|
this.timer = setInterval(() => {
|
|
if (this.countdown > 0) {
|
|
this.countdown--;
|
|
} else {
|
|
clearInterval(this.timer);
|
|
this.timer = null;
|
|
}
|
|
}, 1000);
|
|
|
|
// 调用发送验证码接口
|
|
Api.user.sendSmsVerification({
|
|
phone: this.form.areaCode + this.form.mobile,
|
|
captcha: this.form.captcha,
|
|
captchaId: this.form.captchaId
|
|
}, (res) => {
|
|
showSuccess(this.$t('register.captchaSendSuccess'));
|
|
}, (err) => {
|
|
showDanger(err.data.msg || this.$t('register.captchaSendFailed'));
|
|
this.countdown = 0;
|
|
this.fetchCaptcha();
|
|
});
|
|
},
|
|
|
|
// 注册逻辑
|
|
register() {
|
|
if (this.enableMobileRegister) {
|
|
// 手机号注册验证
|
|
if (!validateMobile(this.form.mobile, this.form.areaCode)) {
|
|
showDanger(this.$t('register.inputCorrectMobile'));
|
|
return;
|
|
}
|
|
if (!this.form.mobileCaptcha) {
|
|
showDanger(this.$t('register.requiredMobileCaptcha'));
|
|
return;
|
|
}
|
|
} else {
|
|
// 用户名注册验证
|
|
if (!this.validateInput(this.form.username, this.$t('register.requiredUsername'))) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
// 验证密码
|
|
if (!this.validateInput(this.form.password, this.$t('register.requiredPassword'))) {
|
|
return;
|
|
}
|
|
if (this.form.password !== this.form.confirmPassword) {
|
|
showDanger(this.$t('register.passwordsNotMatch'))
|
|
return
|
|
}
|
|
// 验证验证码
|
|
if (!this.validateInput(this.form.captcha, this.$t('register.requiredCaptcha'))) {
|
|
return;
|
|
}
|
|
|
|
if (this.enableMobileRegister) {
|
|
this.form.username = this.form.areaCode + this.form.mobile
|
|
}
|
|
|
|
Api.user.register(this.form, ({ data }) => {
|
|
showSuccess(this.$t('register.registerSuccess'))
|
|
goToPage('/login')
|
|
}, (err) => {
|
|
showDanger(err.data.msg || this.$t('register.registerFailed'))
|
|
if (err.data != null && err.data.msg != null && err.data.msg.indexOf('图形验证码') > -1) {
|
|
this.fetchCaptcha()
|
|
}
|
|
})
|
|
},
|
|
|
|
goToLogin() {
|
|
goToPage('/login')
|
|
}
|
|
},
|
|
beforeDestroy() {
|
|
if (this.timer) {
|
|
clearInterval(this.timer);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './auth.scss';
|
|
|
|
.send-captcha-btn {
|
|
margin-right: -5px;
|
|
min-width: 100px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
background: rgb(87, 120, 255);
|
|
border: none;
|
|
padding: 0px;
|
|
|
|
&:disabled {
|
|
background: #c0c4cc;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
</style>
|