| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- <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" :loading="isSubmitting">立即注册</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>
- <!-- #ifdef MP-WEIXIN -->
- <view class="wechat-register-tip">
- <text>推荐使用微信一键登录</text>
- <button class="wechat-register-btn" @click="navigateToLogin">
- <text class="wechat-icon">微</text>
- <text>一键登录</text>
- </button>
- </view>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import storage from "@/utils/storage.js";
- import { register } from '@/api/services/connect.js';
- import Foundation from "@/utils/Foundation.js";
- export default {
- data() {
- return {
- formData: {
- phone: '',
- code: '',
- password: '',
- confirmPassword: '',
- nickname: ''
- },
- showPassword: false,
- showConfirmPassword: false,
- agreed: true,
- codeBtnText: '获取验证码',
- codeBtnDisabled: false,
- countdown: 60,
- isSubmitting: false
- }
- },
- 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'
- })
- },
- 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
- }
-
- const phone = this.formData.phone; // 获取用户输入的手机号
- const result = Foundation.validatePhoneNumber(phone);
- if (!result.valid) {
- uni.showToast({
- title: result.message,
- 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
- }
-
- this.isSubmitting = true;
-
- // 调用注册接口
- uni.showLoading({ title: '注册中...' })
-
- const data = {
- phoneNumber: this.formData.phone,
- password: this.formData.password,
- username: this.formData.nickname || `用户${this.formData.phone.substr(-4)}`
- }
-
- // 调用注册接口
- register(data)
- .then(res => {
- console.log("res注册",res);
- if (res.data.code === 200) {
- uni.showToast({
- title: '注册成功',
- icon: 'success'
- });
- storage.setUserInfo(data);
- // 自动登录
- // if (res.data.data && res.data.data.token) {
- // storage.setAccessToken(res.data.data.token);
- // storage.setUserInfo(data);
- // storage.setHasLogin(true);
- // }
-
- // 延迟跳转到登录页或首页
- setTimeout(() => {
- uni.navigateBack({
- delta: 1,
- });
- }, 1500);
- } else {
- uni.showToast({
- title: res.data.msg || '注册失败,请稍后重试',
- icon: 'none'
- });
- }
- })
- .catch(err => {
- uni.showToast({
- title: '网络异常,请稍后重试',
- icon: 'none'
- });
- console.error(err);
- })
- .finally(() => {
- uni.hideLoading();
- this.isSubmitting = false;
- });
- }
- }
- }
- </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;
- padding: 40rpx 0;
- }
- .agreement-text {
- font-size: 24rpx;
- color: #666;
- margin-left: 10rpx;
- }
- /* 微信注册提示 */
- .wechat-register-tip {
- margin-top: 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .wechat-register-tip text {
- font-size: 28rpx;
- color: #666;
- margin-bottom: 20rpx;
- }
- .wechat-register-btn {
- width: 80%;
- height: 90rpx;
- background-color: #07C160;
- color: #fff;
- border-radius: 45rpx;
- font-size: 32rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- border: none;
- padding: 0;
- }
- .wechat-icon {
- width: 40rpx;
- height: 40rpx;
- background-color: rgba(255, 255, 255, 0.2);
- color: #fff;
- border-radius: 20rpx;
- font-size: 20rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10rpx;
- }
- /* #ifdef H5 */
- /* H5特殊样式调整 */
- @media screen and (min-width: 768px) {
- .register-form {
- max-width: 600rpx;
- margin: 0 auto;
- }
- }
- /* #endif */
- </style>
|