| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431 |
- <template>
- <view class="register-container">
- <view class="page-header">
- <text class="back-icon" @click="goBack">←</text>
- <text class="page-title">注册账号</text>
- <text class="placeholder"></text>
- </view>
-
- <view class="register-form">
- <view class="form-group">
- <view class="input-group">
- <text class="input-icon">手</text>
- <input
- class="input"
- type="number"
- placeholder="请输入手机号"
- v-model="formData.phone"
- maxlength="11"
- />
- </view>
- </view>
-
- <view class="form-group">
- <view class="input-group">
- <text class="input-icon">验</text>
- <input
- class="input"
- type="number"
- placeholder="请输入验证码"
- v-model="formData.code"
- maxlength="6"
- />
- <text
- class="code-btn"
- :class="{ disabled: codeBtnDisabled }"
- @click="getVerificationCode"
- >
- {{ codeBtnText }}
- </text>
- </view>
- </view>
-
- <view class="form-group">
- <view class="input-group">
- <text class="input-icon">密</text>
- <input
- class="input"
- :type="showPassword ? 'text' : 'password'"
- placeholder="请设置密码"
- v-model="formData.password"
- />
- <text class="eye-icon" @click="togglePasswordVisibility">
- {{ showPassword ? '👁️' : '👁️🗨️' }}
- </text>
- </view>
- </view>
-
- <view class="form-group">
- <view class="input-group">
- <text class="input-icon">确</text>
- <input
- class="input"
- :type="showConfirmPassword ? 'text' : 'password'"
- placeholder="请确认密码"
- v-model="formData.confirmPassword"
- />
- <text class="eye-icon" @click="toggleConfirmPasswordVisibility">
- {{ showConfirmPassword ? '👁️' : '👁️🗨️' }}
- </text>
- </view>
- </view>
-
- <view class="form-group">
- <view class="input-group">
- <text class="input-icon">昵</text>
- <input
- class="input"
- type="text"
- placeholder="请输入昵称(选填)"
- v-model="formData.nickname"
- />
- </view>
- </view>
-
- <button class="register-btn" @click="handleRegister">立即注册</button>
-
- <view class="login-link">
- <text>已有账号?</text>
- <text class="link" @click="navigateToLogin">立即登录</text>
- </view>
- </view>
-
- <view class="privacy-agreement">
- <checkbox :checked="agreed" @click="toggleAgreement"></checkbox>
- <text class="agreement-text">
- 注册即表示您已同意
- <text class="link" @click="navigateToTerms">用户协议</text>
- 和
- <text class="link" @click="navigateToPrivacy">隐私政策</text>
- </text>
- </view>
- </view>
- </template>
- <script>
- import { register, sendVerificationCode } from '@/api/services/auth.js';
- export default {
- data() {
- return {
- formData: {
- phone: '',
- code: '',
- password: '',
- confirmPassword: '',
- nickname: ''
- },
- showPassword: false,
- showConfirmPassword: false,
- agreed: true,
- codeBtnText: '获取验证码',
- codeBtnDisabled: false,
- countdown: 60
- }
- },
- methods: {
- goBack() {
- uni.navigateBack()
- },
- togglePasswordVisibility() {
- this.showPassword = !this.showPassword
- },
- toggleConfirmPasswordVisibility() {
- this.showConfirmPassword = !this.showConfirmPassword
- },
- toggleAgreement() {
- this.agreed = !this.agreed
- },
- navigateToLogin() {
- uni.navigateBack()
- },
- navigateToTerms() {
- uni.navigateTo({
- url: '/pages/privacy/terms'
- })
- },
- navigateToPrivacy() {
- uni.navigateTo({
- url: '/pages/privacy/index'
- })
- },
- getVerificationCode() {
- if (this.codeBtnDisabled) return
-
- if (!this.formData.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- })
- return
- }
-
- if (!/^1\d{10}$/.test(this.formData.phone)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- })
- return
- }
-
- // 发送验证码请求
- uni.showLoading({ title: '发送中...' })
-
- // 使用授权服务发送验证码
- sendVerificationCode({
- phone: this.formData.phone,
- type: 'register'
- })
- .then(() => {
- uni.showToast({
- title: '验证码已发送',
- icon: 'success'
- });
- this.startCountdown();
- })
- .catch(error => {
- uni.showToast({
- title: error,
- icon: 'none'
- });
- })
- .finally(() => {
- uni.hideLoading();
- });
- },
- startCountdown() {
- this.codeBtnDisabled = true
- this.codeBtnText = `${this.countdown}秒`
-
- const timer = setInterval(() => {
- this.countdown--
- this.codeBtnText = `${this.countdown}秒`
-
- if (this.countdown <= 0) {
- clearInterval(timer)
- this.codeBtnDisabled = false
- this.codeBtnText = '获取验证码'
- this.countdown = 60
- }
- }, 1000)
- },
- validateForm() {
- if (!this.formData.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- })
- return false
- }
-
- if (!/^1\d{10}$/.test(this.formData.phone)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- })
- return false
- }
-
- if (!this.formData.code) {
- uni.showToast({
- title: '请输入验证码',
- icon: 'none'
- })
- return false
- }
-
- if (!this.formData.password) {
- uni.showToast({
- title: '请设置密码',
- icon: 'none'
- })
- return false
- }
-
- if (this.formData.password.length < 6) {
- uni.showToast({
- title: '密码长度不能少于6位',
- icon: 'none'
- })
- return false
- }
-
- if (this.formData.password !== this.formData.confirmPassword) {
- uni.showToast({
- title: '两次输入的密码不一致',
- icon: 'none'
- })
- return false
- }
-
- return true
- },
- handleRegister() {
- if (!this.validateForm()) return
-
- if (!this.agreed) {
- uni.showToast({
- title: '请同意用户协议和隐私政策',
- icon: 'none'
- })
- return
- }
-
- // 调用注册接口
- uni.showLoading({ title: '注册中...' })
-
- // 使用授权服务注册
- register({
- phone: this.formData.phone,
- code: this.formData.code,
- password: this.formData.password,
- nickname: this.formData.nickname || `用户${this.formData.phone.substr(-4)}`
- })
- .then(() => {
- uni.showToast({
- title: '注册成功',
- icon: 'success'
- });
-
- // 延迟跳转到登录页
- setTimeout(() => {
- uni.navigateBack();
- }, 1500);
- })
- .catch(error => {
- uni.showToast({
- title: error,
- icon: 'none'
- });
- })
- .finally(() => {
- uni.hideLoading();
- });
- }
- }
- }
- </script>
- <style>
- .register-container {
- min-height: 100vh;
- padding: 0 40rpx 40rpx;
- background-color: #fff;
- display: flex;
- flex-direction: column;
- }
- .page-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 40rpx 0;
- }
- .back-icon {
- font-size: 50rpx;
- color: #333;
- width: 60rpx;
- }
- .page-title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- }
- .placeholder {
- width: 60rpx;
- }
- .register-form {
- width: 100%;
- margin-bottom: 30rpx;
- }
- .form-group {
- margin-bottom: 30rpx;
- }
- .input-group {
- display: flex;
- align-items: center;
- border-bottom: 1rpx solid #E0E0E0;
- padding: 20rpx 0;
- }
- .input-icon {
- width: 44rpx;
- height: 44rpx;
- background-color: #E8F5E9;
- color: #4CAF50;
- font-size: 24rpx;
- border-radius: 8rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 20rpx;
- }
- .input {
- flex: 1;
- height: 44rpx;
- font-size: 28rpx;
- }
- .eye-icon {
- padding: 0 10rpx;
- color: #999;
- }
- .code-btn {
- font-size: 28rpx;
- color: #4CAF50;
- padding: 0 10rpx;
- }
- .code-btn.disabled {
- color: #999;
- }
- .register-btn {
- width: 100%;
- height: 90rpx;
- background-color: #4CAF50;
- color: #fff;
- border-radius: 45rpx;
- font-size: 32rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- border: none;
- margin: 60rpx 0 30rpx;
- }
- .login-link {
- display: flex;
- justify-content: center;
- font-size: 28rpx;
- color: #666;
- }
- .link {
- color: #4CAF50;
- margin-left: 10rpx;
- }
- .privacy-agreement {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: auto;
- padding: 40rpx 0;
- }
- .agreement-text {
- font-size: 24rpx;
- color: #666;
- margin-left: 10rpx;
- }
- </style>
|