mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-31 03:43:57 +08:00
878 lines
21 KiB
Vue
878 lines
21 KiB
Vue
<route lang="jsonc" type="page">
|
||||
|
|
{
|
|||
|
|
"layout": "default",
|
|||
|
|
"style": {
|
|||
|
|
"navigationStyle": "custom",
|
|||
|
|
"navigationBarTitleText": "注册"
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</route>
|
|||
|
|
|
|||
|
|
<script lang="ts" setup>
|
|||
|
|
import { computed, onMounted, ref } from 'vue'
|
|||
|
|
import { register, sendSmsCode } from '@/api/auth'
|
|||
|
|
import { useConfigStore } from '@/store'
|
|||
|
|
import { toast } from '@/utils/toast'
|
|||
|
|
|
|||
|
|
// 获取屏幕边界到安全区域距离
|
|||
|
|
let safeAreaInsets
|
|||
|
|
let systemInfo
|
|||
|
|
|
|||
|
|
// #ifdef MP-WEIXIN
|
|||
|
|
// 微信小程序使用新的API
|
|||
|
|
systemInfo = uni.getWindowInfo()
|
|||
|
|
safeAreaInsets = systemInfo.safeArea
|
|||
|
|
? {
|
|||
|
|
top: systemInfo.safeArea.top,
|
|||
|
|
right: systemInfo.windowWidth - systemInfo.safeArea.right,
|
|||
|
|
bottom: systemInfo.windowHeight - systemInfo.safeArea.bottom,
|
|||
|
|
left: systemInfo.safeArea.left,
|
|||
|
|
}
|
|||
|
|
: null
|
|||
|
|
// #endif
|
|||
|
|
|
|||
|
|
// #ifndef MP-WEIXIN
|
|||
|
|
// 其他平台继续使用uni API
|
|||
|
|
systemInfo = uni.getSystemInfoSync()
|
|||
|
|
safeAreaInsets = systemInfo.safeAreaInsets
|
|||
|
|
// #endif
|
|||
|
|
|
|||
|
|
// 注册表单数据
|
|||
|
|
interface RegisterData {
|
|||
|
|
username: string
|
|||
|
|
password: string
|
|||
|
|
confirmPassword: string
|
|||
|
|
captcha: string
|
|||
|
|
captchaId: string
|
|||
|
|
areaCode: string
|
|||
|
|
mobile: string
|
|||
|
|
mobileCaptcha: string
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const formData = ref<RegisterData>({
|
|||
|
|
username: '',
|
|||
|
|
password: '',
|
|||
|
|
confirmPassword: '',
|
|||
|
|
captcha: '',
|
|||
|
|
captchaId: '',
|
|||
|
|
areaCode: '+86',
|
|||
|
|
mobile: '',
|
|||
|
|
mobileCaptcha: '',
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
// 验证码图片
|
|||
|
|
const captchaImage = ref('')
|
|||
|
|
const loading = ref(false)
|
|||
|
|
const smsLoading = ref(false)
|
|||
|
|
const smsCountdown = ref(0)
|
|||
|
|
|
|||
|
|
// 注册方式:'username' | 'mobile'
|
|||
|
|
const registerType = ref<'username' | 'mobile'>('username')
|
|||
|
|
|
|||
|
|
// 获取配置store
|
|||
|
|
const configStore = useConfigStore()
|
|||
|
|
|
|||
|
|
// 区号选择相关
|
|||
|
|
const showAreaCodeSheet = ref(false)
|
|||
|
|
const selectedAreaCode = ref('+86')
|
|||
|
|
const selectedAreaName = ref('中国大陆')
|
|||
|
|
|
|||
|
|
// 计算属性:是否启用手机号注册
|
|||
|
|
const enableMobileRegister = computed(() => {
|
|||
|
|
return configStore.config.enableMobileRegister
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
// 计算属性:区号列表
|
|||
|
|
const areaCodeList = computed(() => {
|
|||
|
|
return configStore.config.mobileAreaList || [{ name: '中国大陆', key: '+86' }]
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
// 切换注册方式
|
|||
|
|
function toggleRegisterType() {
|
|||
|
|
registerType.value = registerType.value === 'username' ? 'mobile' : 'username'
|
|||
|
|
// 清空输入框
|
|||
|
|
formData.value.username = ''
|
|||
|
|
formData.value.mobile = ''
|
|||
|
|
formData.value.mobileCaptcha = ''
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 打开区号选择弹窗
|
|||
|
|
function openAreaCodeSheet() {
|
|||
|
|
showAreaCodeSheet.value = true
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 选择区号
|
|||
|
|
function selectAreaCode(item: { name: string, key: string }) {
|
|||
|
|
selectedAreaCode.value = item.key
|
|||
|
|
selectedAreaName.value = item.name
|
|||
|
|
formData.value.areaCode = item.key
|
|||
|
|
showAreaCodeSheet.value = false
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 关闭区号选择弹窗
|
|||
|
|
function closeAreaCodeSheet() {
|
|||
|
|
showAreaCodeSheet.value = false
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 生成UUID
|
|||
|
|
function generateUUID() {
|
|||
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
|
|||
|
|
const r = (Math.random() * 16) | 0
|
|||
|
|
const v = c === 'x' ? r : (r & 0x3) | 0x8
|
|||
|
|
return v.toString(16)
|
|||
|
|
})
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 获取验证码
|
|||
|
|
async function refreshCaptcha() {
|
|||
|
|
const uuid = generateUUID()
|
|||
|
|
formData.value.captchaId = uuid
|
|||
|
|
captchaImage.value = `${import.meta.env.VITE_SERVER_BASEURL}/user/captcha?uuid=${uuid}&t=${Date.now()}`
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 发送短信验证码
|
|||
|
|
async function sendSmsVerification() {
|
|||
|
|
if (!formData.value.mobile) {
|
|||
|
|
toast.warning('请输入手机号')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
if (!formData.value.captcha) {
|
|||
|
|
toast.warning('请输入图形验证码')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 手机号格式验证
|
|||
|
|
const phoneRegex = /^1[3-9]\d{9}$/
|
|||
|
|
if (!phoneRegex.test(formData.value.mobile)) {
|
|||
|
|
toast.warning('请输入正确的手机号')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
try {
|
|||
|
|
smsLoading.value = true
|
|||
|
|
await sendSmsCode({
|
|||
|
|
phone: `${selectedAreaCode.value}${formData.value.mobile}`,
|
|||
|
|
captcha: formData.value.captcha,
|
|||
|
|
captchaId: formData.value.captchaId,
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
toast.success('验证码发送成功')
|
|||
|
|
|
|||
|
|
// 开始倒计时
|
|||
|
|
smsCountdown.value = 60
|
|||
|
|
const timer = setInterval(() => {
|
|||
|
|
smsCountdown.value--
|
|||
|
|
if (smsCountdown.value <= 0) {
|
|||
|
|
clearInterval(timer)
|
|||
|
|
}
|
|||
|
|
}, 1000)
|
|||
|
|
}
|
|||
|
|
catch (error: any) {
|
|||
|
|
// 发送失败重新获取图形验证码
|
|||
|
|
refreshCaptcha()
|
|||
|
|
}
|
|||
|
|
finally {
|
|||
|
|
smsLoading.value = false
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 注册
|
|||
|
|
async function handleRegister() {
|
|||
|
|
// 表单验证
|
|||
|
|
if (registerType.value === 'username') {
|
|||
|
|
if (!formData.value.username) {
|
|||
|
|
toast.warning('请输入用户名')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
else {
|
|||
|
|
if (!formData.value.mobile) {
|
|||
|
|
toast.warning('请输入手机号')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
// 手机号格式验证
|
|||
|
|
const phoneRegex = /^1[3-9]\d{9}$/
|
|||
|
|
if (!phoneRegex.test(formData.value.mobile)) {
|
|||
|
|
toast.warning('请输入正确的手机号')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
if (!formData.value.mobileCaptcha) {
|
|||
|
|
toast.warning('请输入短信验证码')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (!formData.value.password) {
|
|||
|
|
toast.warning('请输入密码')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (!formData.value.confirmPassword) {
|
|||
|
|
toast.warning('请确认密码')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (formData.value.password !== formData.value.confirmPassword) {
|
|||
|
|
toast.warning('两次输入的密码不一致')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (!formData.value.captcha) {
|
|||
|
|
toast.warning('请输入验证码')
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
try {
|
|||
|
|
loading.value = true
|
|||
|
|
|
|||
|
|
// 构建注册数据
|
|||
|
|
const registerData = {
|
|||
|
|
username: registerType.value === 'mobile' ? `${selectedAreaCode.value}${formData.value.mobile}` : formData.value.username,
|
|||
|
|
password: formData.value.password,
|
|||
|
|
confirmPassword: formData.value.confirmPassword,
|
|||
|
|
captcha: formData.value.captcha,
|
|||
|
|
captchaId: formData.value.captchaId,
|
|||
|
|
areaCode: formData.value.areaCode,
|
|||
|
|
mobile: formData.value.mobile,
|
|||
|
|
mobileCaptcha: formData.value.mobileCaptcha,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
await register(registerData)
|
|||
|
|
toast.success('注册成功')
|
|||
|
|
|
|||
|
|
// 跳转到登录页
|
|||
|
|
setTimeout(() => {
|
|||
|
|
uni.navigateBack()
|
|||
|
|
}, 1000)
|
|||
|
|
}
|
|||
|
|
catch (error: any) {
|
|||
|
|
// 注册失败重新获取验证码
|
|||
|
|
refreshCaptcha()
|
|||
|
|
}
|
|||
|
|
finally {
|
|||
|
|
loading.value = false
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 返回登录
|
|||
|
|
function goBack() {
|
|||
|
|
uni.navigateBack()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 页面加载时获取验证码
|
|||
|
|
onLoad(() => {
|
|||
|
|
refreshCaptcha()
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
// 组件挂载时确保配置已加载
|
|||
|
|
onMounted(async () => {
|
|||
|
|
if (!configStore.config.name) {
|
|||
|
|
try {
|
|||
|
|
await configStore.fetchPublicConfig()
|
|||
|
|
}
|
|||
|
|
catch (error) {
|
|||
|
|
console.error('获取配置失败:', error)
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
})
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<template>
|
|||
|
|
<view class="app-container box-border h-screen w-full" :style="{ paddingTop: `${safeAreaInsets?.top}px` }">
|
|||
|
|
<view class="header">
|
|||
|
|
<view class="back-button" @click="goBack">
|
|||
|
|
<wd-icon name="arrow-left" custom-class="back-icon" />
|
|||
|
|
</view>
|
|||
|
|
<view class="logo-section">
|
|||
|
|
<wd-img :width="80" :height="80" round src="/static/logo.png" class="logo" />
|
|||
|
|
<text class="welcome-text">
|
|||
|
|
欢迎注册
|
|||
|
|
</text>
|
|||
|
|
<text class="subtitle">
|
|||
|
|
创建您的新账户
|
|||
|
|
</text>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view class="form-container">
|
|||
|
|
<view class="form">
|
|||
|
|
<!-- 手机号注册 -->
|
|||
|
|
<template v-if="registerType === 'mobile'">
|
|||
|
|
<view class="input-group">
|
|||
|
|
<view class="input-wrapper mobile-wrapper">
|
|||
|
|
<view class="area-code-selector" @click="openAreaCodeSheet">
|
|||
|
|
<text class="area-code-text">
|
|||
|
|
{{ selectedAreaCode }}
|
|||
|
|
</text>
|
|||
|
|
<wd-icon name="arrow-down" custom-class="area-code-arrow" />
|
|||
|
|
</view>
|
|||
|
|
<view class="mobile-input-wrapper">
|
|||
|
|
<wd-input
|
|||
|
|
v-model="formData.mobile"
|
|||
|
|
custom-class="styled-input"
|
|||
|
|
no-border
|
|||
|
|
placeholder="请输入手机号码"
|
|||
|
|
type="number"
|
|||
|
|
:maxlength="11"
|
|||
|
|
/>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<!-- 用户名注册 -->
|
|||
|
|
<template v-else>
|
|||
|
|
<view class="input-group">
|
|||
|
|
<view class="input-wrapper">
|
|||
|
|
<wd-input
|
|||
|
|
v-model="formData.username"
|
|||
|
|
custom-class="styled-input"
|
|||
|
|
no-border
|
|||
|
|
placeholder="请输入用户名"
|
|||
|
|
/>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<view class="input-group">
|
|||
|
|
<view class="input-wrapper">
|
|||
|
|
<wd-input
|
|||
|
|
v-model="formData.password"
|
|||
|
|
custom-class="styled-input"
|
|||
|
|
no-border
|
|||
|
|
placeholder="请输入密码"
|
|||
|
|
show-password
|
|||
|
|
:maxlength="20"
|
|||
|
|
/>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view class="input-group">
|
|||
|
|
<view class="input-wrapper">
|
|||
|
|
<wd-input
|
|||
|
|
v-model="formData.confirmPassword"
|
|||
|
|
custom-class="styled-input"
|
|||
|
|
no-border
|
|||
|
|
placeholder="请确认密码"
|
|||
|
|
show-password
|
|||
|
|
:maxlength="20"
|
|||
|
|
/>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view class="input-group">
|
|||
|
|
<view class="input-wrapper captcha-wrapper">
|
|||
|
|
<wd-input
|
|||
|
|
v-model="formData.captcha"
|
|||
|
|
custom-class="styled-input"
|
|||
|
|
no-border
|
|||
|
|
placeholder="请输入验证码"
|
|||
|
|
:maxlength="6"
|
|||
|
|
/>
|
|||
|
|
<view class="captcha-image" @click="refreshCaptcha">
|
|||
|
|
<image :src="captchaImage" class="captcha-img" />
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 手机验证码输入框 -->
|
|||
|
|
<view v-if="registerType === 'mobile'" class="input-group">
|
|||
|
|
<view class="input-wrapper sms-wrapper">
|
|||
|
|
<wd-input
|
|||
|
|
v-model="formData.mobileCaptcha"
|
|||
|
|
custom-class="styled-input"
|
|||
|
|
no-border
|
|||
|
|
placeholder="请输入短信验证码"
|
|||
|
|
type="number"
|
|||
|
|
:maxlength="6"
|
|||
|
|
/>
|
|||
|
|
<wd-button
|
|||
|
|
:loading="smsLoading"
|
|||
|
|
:disabled="smsCountdown > 0"
|
|||
|
|
custom-class="sms-btn"
|
|||
|
|
@click="sendSmsVerification"
|
|||
|
|
>
|
|||
|
|
{{ smsCountdown > 0 ? `${smsCountdown}s` : '获取验证码' }}
|
|||
|
|
</wd-button>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view
|
|||
|
|
class="register-btn"
|
|||
|
|
type="primary"
|
|||
|
|
:loading="loading"
|
|||
|
|
@click="handleRegister"
|
|||
|
|
>
|
|||
|
|
{{ loading ? '注册中...' : '注册' }}
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view class="login-hint">
|
|||
|
|
<text class="hint-text">
|
|||
|
|
已有账户?
|
|||
|
|
</text>
|
|||
|
|
<text class="login-link" @click="goBack">
|
|||
|
|
立即登录
|
|||
|
|
</text>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 注册方式切换 -->
|
|||
|
|
<view v-if="enableMobileRegister" class="register-type-switch">
|
|||
|
|
<view class="switch-tabs">
|
|||
|
|
<view
|
|||
|
|
class="switch-tab"
|
|||
|
|
:class="{ active: registerType === 'username' }"
|
|||
|
|
@click="toggleRegisterType"
|
|||
|
|
>
|
|||
|
|
<wd-icon name="user" />
|
|||
|
|
</view>
|
|||
|
|
<view
|
|||
|
|
class="switch-tab"
|
|||
|
|
:class="{ active: registerType === 'mobile' }"
|
|||
|
|
@click="toggleRegisterType"
|
|||
|
|
>
|
|||
|
|
<wd-icon name="phone" />
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 区号选择弹窗 -->
|
|||
|
|
<wd-action-sheet
|
|||
|
|
v-model="showAreaCodeSheet"
|
|||
|
|
title="选择国家/地区"
|
|||
|
|
:close-on-click-modal="true"
|
|||
|
|
@close="closeAreaCodeSheet"
|
|||
|
|
>
|
|||
|
|
<view class="area-code-sheet">
|
|||
|
|
<scroll-view scroll-y class="area-code-list">
|
|||
|
|
<view
|
|||
|
|
v-for="item in areaCodeList"
|
|||
|
|
:key="item.key"
|
|||
|
|
class="area-code-item"
|
|||
|
|
:class="{ selected: selectedAreaCode === item.key }"
|
|||
|
|
@click="selectAreaCode(item)"
|
|||
|
|
>
|
|||
|
|
<view class="area-info">
|
|||
|
|
<text class="area-name">
|
|||
|
|
{{ item.name }}
|
|||
|
|
</text>
|
|||
|
|
<text class="area-code">
|
|||
|
|
{{ item.key }}
|
|||
|
|
</text>
|
|||
|
|
</view>
|
|||
|
|
<wd-icon
|
|||
|
|
v-if="selectedAreaCode === item.key"
|
|||
|
|
name="check"
|
|||
|
|
custom-class="check-icon"
|
|||
|
|
/>
|
|||
|
|
</view>
|
|||
|
|
</scroll-view>
|
|||
|
|
<view class="sheet-footer">
|
|||
|
|
<wd-button
|
|||
|
|
type="primary"
|
|||
|
|
custom-class="confirm-btn"
|
|||
|
|
@click="closeAreaCodeSheet"
|
|||
|
|
>
|
|||
|
|
确认
|
|||
|
|
</wd-button>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</wd-action-sheet>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<style lang="scss" scoped>
|
|||
|
|
.app-container {
|
|||
|
|
background: linear-gradient(145deg, #f5f8fd, #6baaff, #9ebbfc, #f5f8fd);
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
position: relative;
|
|||
|
|
overflow: hidden;
|
|||
|
|
min-height: 100vh;
|
|||
|
|
|
|||
|
|
&::before {
|
|||
|
|
content: '';
|
|||
|
|
position: absolute;
|
|||
|
|
top: -50%;
|
|||
|
|
left: -50%;
|
|||
|
|
width: 200%;
|
|||
|
|
height: 200%;
|
|||
|
|
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
|
|||
|
|
animation: float 6s ease-in-out infinite;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
@keyframes float {
|
|||
|
|
0%,
|
|||
|
|
100% {
|
|||
|
|
transform: translateY(0px) rotate(0deg);
|
|||
|
|
}
|
|||
|
|
50% {
|
|||
|
|
transform: translateY(-20px) rotate(180deg);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.header {
|
|||
|
|
flex: 0 0 auto;
|
|||
|
|
min-height: 280rpx;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
padding: 15% 0 40rpx 0;
|
|||
|
|
position: relative;
|
|||
|
|
|
|||
|
|
.back-button {
|
|||
|
|
position: absolute;
|
|||
|
|
left: 40rpx;
|
|||
|
|
top: 60rpx;
|
|||
|
|
width: 60rpx;
|
|||
|
|
height: 60rpx;
|
|||
|
|
background: rgba(255, 255, 255, 0.2);
|
|||
|
|
border-radius: 50%;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
cursor: pointer;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
|
|||
|
|
&:hover {
|
|||
|
|
background: rgba(255, 255, 255, 0.3);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
:deep(.back-icon) {
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
color: #ffffff;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.logo-section {
|
|||
|
|
text-align: center;
|
|||
|
|
|
|||
|
|
.logo {
|
|||
|
|
margin-bottom: 20rpx;
|
|||
|
|
box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.welcome-text {
|
|||
|
|
display: block;
|
|||
|
|
color: #ffffff;
|
|||
|
|
font-size: 40rpx;
|
|||
|
|
font-weight: 600;
|
|||
|
|
margin-bottom: 12rpx;
|
|||
|
|
text-shadow: 0 2rpx 4rpx rgba(0, 0, 0, 0.1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.subtitle {
|
|||
|
|
display: block;
|
|||
|
|
color: rgba(255, 255, 255, 0.8);
|
|||
|
|
font-size: 26rpx;
|
|||
|
|
font-weight: 400;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.form-container {
|
|||
|
|
padding: 0 40rpx 40rpx 40rpx;
|
|||
|
|
flex: 1;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: flex-start;
|
|||
|
|
|
|||
|
|
.form {
|
|||
|
|
width: 100%;
|
|||
|
|
background: rgba(255, 255, 255, 0.95);
|
|||
|
|
border-radius: 24rpx;
|
|||
|
|
padding: 40rpx 30rpx 30rpx 30rpx;
|
|||
|
|
backdrop-filter: blur(10rpx);
|
|||
|
|
box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.1);
|
|||
|
|
border: 1rpx solid rgba(255, 255, 255, 0.2);
|
|||
|
|
max-height: calc(100vh - 350rpx);
|
|||
|
|
overflow-y: auto;
|
|||
|
|
|
|||
|
|
.input-group {
|
|||
|
|
margin-bottom: 24rpx;
|
|||
|
|
|
|||
|
|
.input-wrapper {
|
|||
|
|
position: relative;
|
|||
|
|
background: #f8f9fa;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
padding: 20rpx 16rpx;
|
|||
|
|
border: 2rpx solid #e9ecef;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
|
|||
|
|
&:focus-within {
|
|||
|
|
border-color: #667eea;
|
|||
|
|
background: #ffffff;
|
|||
|
|
box-shadow: 0 0 0 6rpx rgba(102, 126, 234, 0.1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
&.captcha-wrapper {
|
|||
|
|
.captcha-image {
|
|||
|
|
margin-left: 20rpx;
|
|||
|
|
width: 120rpx;
|
|||
|
|
height: 60rpx;
|
|||
|
|
border-radius: 8rpx;
|
|||
|
|
overflow: hidden;
|
|||
|
|
cursor: pointer;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
background: #e9ecef;
|
|||
|
|
border: 1rpx solid #ddd;
|
|||
|
|
|
|||
|
|
.captcha-img {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 100%;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
&.sms-wrapper {
|
|||
|
|
:deep(.sms-btn) {
|
|||
|
|
margin-left: 20rpx;
|
|||
|
|
padding: 0 20rpx;
|
|||
|
|
height: 60rpx;
|
|||
|
|
border-radius: 8rpx;
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
white-space: nowrap;
|
|||
|
|
min-width: 140rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
&.mobile-wrapper {
|
|||
|
|
padding: 0;
|
|||
|
|
background: transparent;
|
|||
|
|
border: none;
|
|||
|
|
display: flex;
|
|||
|
|
gap: 20rpx;
|
|||
|
|
|
|||
|
|
.area-code-selector {
|
|||
|
|
flex: 0 0 160rpx;
|
|||
|
|
background: #f8f9fa;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
padding: 20rpx 16rpx;
|
|||
|
|
border: 2rpx solid #e9ecef;
|
|||
|
|
height: 45rpx;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
cursor: pointer;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
|
|||
|
|
&:hover {
|
|||
|
|
border-color: #667eea;
|
|||
|
|
background: #ffffff;
|
|||
|
|
box-shadow: 0 0 0 6rpx rgba(102, 126, 234, 0.1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.area-code-text {
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #333333;
|
|||
|
|
font-weight: 500;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
:deep(.area-code-arrow) {
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
color: #999999;
|
|||
|
|
transition: transform 0.3s ease;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.mobile-input-wrapper {
|
|||
|
|
flex: 1;
|
|||
|
|
background: #f8f9fa;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
padding: 20rpx 16rpx;
|
|||
|
|
border: 2rpx solid #e9ecef;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
|
|||
|
|
&:focus-within {
|
|||
|
|
border-color: #667eea;
|
|||
|
|
background: #ffffff;
|
|||
|
|
box-shadow: 0 0 0 6rpx rgba(102, 126, 234, 0.1);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
:deep(.styled-input) {
|
|||
|
|
background: transparent !important;
|
|||
|
|
border: none !important;
|
|||
|
|
outline: none !important;
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
color: #333333;
|
|||
|
|
flex: 1;
|
|||
|
|
|
|||
|
|
&::placeholder {
|
|||
|
|
color: #999999;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
:deep(.register-btn) {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 80rpx;
|
|||
|
|
border: none;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
font-size: 30rpx;
|
|||
|
|
font-weight: 600;
|
|||
|
|
color: #ffffff;
|
|||
|
|
margin-bottom: 30rpx;
|
|||
|
|
box-shadow: 0 8rpx 24rpx rgba(102, 126, 234, 0.3);
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
background-color: var(--wot-button-primary-bg-color, var(--wot-color-theme, #4d80f0));
|
|||
|
|
text-align: center;
|
|||
|
|
line-height: 80rpx;
|
|||
|
|
&:active {
|
|||
|
|
transform: translateY(2rpx);
|
|||
|
|
box-shadow: 0 4rpx 12rpx rgba(102, 126, 234, 0.3);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
&:disabled {
|
|||
|
|
opacity: 0.6;
|
|||
|
|
cursor: not-allowed;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.login-hint {
|
|||
|
|
text-align: center;
|
|||
|
|
margin-bottom: 30rpx;
|
|||
|
|
|
|||
|
|
.hint-text {
|
|||
|
|
color: #666666;
|
|||
|
|
font-size: 26rpx;
|
|||
|
|
margin-right: 8rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.login-link {
|
|||
|
|
color: #667eea;
|
|||
|
|
font-size: 26rpx;
|
|||
|
|
font-weight: 500;
|
|||
|
|
cursor: pointer;
|
|||
|
|
|
|||
|
|
&:hover {
|
|||
|
|
text-decoration: underline;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.register-type-switch {
|
|||
|
|
margin-top: 20rpx;
|
|||
|
|
text-align: center;
|
|||
|
|
|
|||
|
|
.switch-tabs {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: center;
|
|||
|
|
gap: 60rpx;
|
|||
|
|
margin-bottom: 20rpx;
|
|||
|
|
|
|||
|
|
.switch-tab {
|
|||
|
|
width: 60rpx;
|
|||
|
|
height: 60rpx;
|
|||
|
|
border-radius: 50%;
|
|||
|
|
background: #f0f0f0;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
cursor: pointer;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
border: 2rpx solid transparent;
|
|||
|
|
|
|||
|
|
&.active {
|
|||
|
|
background: #667eea;
|
|||
|
|
color: #ffffff;
|
|||
|
|
border-color: #667eea;
|
|||
|
|
box-shadow: 0 4rpx 12rpx rgba(102, 126, 234, 0.3);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
:deep(.wd-icon) {
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.switch-hint {
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
color: #666666;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 区号选择弹窗样式
|
|||
|
|
.area-code-sheet {
|
|||
|
|
background: #ffffff;
|
|||
|
|
border-radius: 24rpx 24rpx 0 0;
|
|||
|
|
overflow: hidden;
|
|||
|
|
|
|||
|
|
.area-code-list {
|
|||
|
|
max-height: 60vh;
|
|||
|
|
padding: 0 40rpx;
|
|||
|
|
|
|||
|
|
.area-code-item {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
padding: 32rpx 0;
|
|||
|
|
border-bottom: 1rpx solid #f8f9fa;
|
|||
|
|
cursor: pointer;
|
|||
|
|
transition: background-color 0.3s ease;
|
|||
|
|
|
|||
|
|
&:hover {
|
|||
|
|
background-color: #f8f9fa;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
&.selected {
|
|||
|
|
background-color: rgba(102, 126, 234, 0.05);
|
|||
|
|
|
|||
|
|
.area-name {
|
|||
|
|
color: #667eea;
|
|||
|
|
font-weight: 500;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.area-code {
|
|||
|
|
color: #667eea;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.area-info {
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
gap: 8rpx;
|
|||
|
|
|
|||
|
|
.area-name {
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
color: #333333;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.area-code {
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #666666;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
:deep(.check-icon) {
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
color: #667eea;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sheet-footer {
|
|||
|
|
padding: 30rpx 40rpx 40rpx 40rpx;
|
|||
|
|
border-top: 1rpx solid #f0f0f0;
|
|||
|
|
|
|||
|
|
:deep(.confirm-btn) {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 88rpx;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
font-size: 32rpx;
|
|||
|
|
font-weight: 600;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</style>
|