| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- <template>
- <view class="forget-container">
- <view class="page-header">
- <text class="back-icon" @click="goBack">←</text>
- <text class="page-title">找回密码</text>
- <text class="placeholder"></text>
- </view>
-
- <view class="forget-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>
-
- <button class="submit-btn" @click="handleResetPassword" :loading="isSubmitting">重置密码</button>
-
- <view class="login-link">
- <text>记得密码?</text>
- <text class="link" @click="navigateToLogin">立即登录</text>
- </view>
- </view>
- <!-- #ifdef MP-WEIXIN -->
- <view class="wechat-tip">
- <text>微信用户可直接使用微信登录</text>
- <button class="wechat-btn" @click="navigateToLogin">
- <text class="wechat-icon">微</text>
- <text>返回登录</text>
- </button>
- </view>
- <!-- #endif -->
-
- <view class="notice">
- <text class="notice-title">温馨提示</text>
- <text class="notice-text">密码重置后,将使用新密码登录系统,请妥善保管您的密码。如有问题请联系客服。</text>
- </view>
- </view>
- </template>
- <script setup>
- import { ref, reactive } from 'vue'
- import storage from "@/utils/storage.js"
- // import { resetPassword, sendVerificationCode } from '@/api/services/auth.js'
- // 响应式数据
- const formData = reactive({
- phone: '',
- code: '',
- password: '',
- confirmPassword: ''
- })
- const showPassword = ref(false)
- const showConfirmPassword = ref(false)
- const codeBtnText = ref('获取验证码')
- const codeBtnDisabled = ref(false)
- const countdown = ref(60)
- const isSubmitting = ref(false)
- // 方法定义
- const goBack = () => {
- uni.navigateBack()
- }
- const togglePasswordVisibility = () => {
- showPassword.value = !showPassword.value
- }
- const toggleConfirmPasswordVisibility = () => {
- showConfirmPassword.value = !showConfirmPassword.value
- }
- const navigateToLogin = () => {
- uni.navigateBack()
- }
- const startCountdown = () => {
- codeBtnDisabled.value = true
- codeBtnText.value = `${countdown.value}秒`
-
- const timer = setInterval(() => {
- countdown.value--
- codeBtnText.value = `${countdown.value}秒`
-
- if (countdown.value <= 0) {
- clearInterval(timer)
- codeBtnDisabled.value = false
- codeBtnText.value = '获取验证码'
- countdown.value = 60
- }
- }, 1000)
- }
- const getVerificationCode = () => {
- if (codeBtnDisabled.value) return
-
- if (!formData.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- })
- return
- }
-
- if (!/^1\d{10}$/.test(formData.phone)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- })
- return
- }
-
- // 发送验证码请求
- uni.showLoading({ title: '发送中...' })
-
- // 调用发送验证码接口
- uni.request({
- url: 'API_URL/user/sendCode', // 替换为实际接口地址
- method: 'POST',
- data: {
- phone: formData.phone,
- type: 'reset'
- },
- success: (res) => {
- if (res.data.code === 200) {
- uni.showToast({
- title: '验证码已发送',
- icon: 'success'
- })
- startCountdown()
- } else {
- uni.showToast({
- title: res.data.msg || '发送失败,请稍后重试',
- icon: 'none'
- })
- }
- },
- fail: (err) => {
- uni.showToast({
- title: '网络异常,请稍后重试',
- icon: 'none'
- })
- console.error(err)
- },
- complete: () => {
- uni.hideLoading()
- }
- })
- }
- const validateForm = () => {
- if (!formData.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- })
- return false
- }
-
- if (!/^1\d{10}$/.test(formData.phone)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- })
- return false
- }
-
- if (!formData.code) {
- uni.showToast({
- title: '请输入验证码',
- icon: 'none'
- })
- return false
- }
-
- if (!formData.password) {
- uni.showToast({
- title: '请设置新密码',
- icon: 'none'
- })
- return false
- }
-
- if (formData.password.length < 6) {
- uni.showToast({
- title: '密码长度不能少于6位',
- icon: 'none'
- })
- return false
- }
-
- if (formData.password !== formData.confirmPassword) {
- uni.showToast({
- title: '两次输入的密码不一致',
- icon: 'none'
- })
- return false
- }
-
- return true
- }
- const handleResetPassword = () => {
- if (!validateForm()) return
-
- isSubmitting.value = true
-
- // 调用重置密码接口
- uni.showLoading({ title: '提交中...' })
-
- // 调用重置密码接口
- uni.request({
- url: 'API_URL/user/resetPassword', // 替换为实际接口地址
- method: 'POST',
- data: {
- phone: formData.phone,
- code: formData.code,
- password: formData.password
- },
- success: (res) => {
- if (res.data.code === 200) {
- uni.showToast({
- title: '密码重置成功',
- icon: 'success'
- })
-
- // 延迟跳转到登录页
- setTimeout(() => {
- uni.navigateBack()
- }, 1500)
- } else {
- uni.showToast({
- title: res.data.msg || '重置失败,请稍后重试',
- icon: 'none'
- })
- }
- },
- fail: (err) => {
- uni.showToast({
- title: '网络异常,请稍后重试',
- icon: 'none'
- })
- console.error(err)
- },
- complete: () => {
- uni.hideLoading()
- isSubmitting.value = false
- }
- })
- }
- </script>
- <style>
- .forget-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;
- }
- .forget-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;
- }
- .submit-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;
- }
- /* 微信提示区域 */
- .wechat-tip {
- margin-top: 60rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .wechat-tip text {
- font-size: 28rpx;
- color: #666;
- margin-bottom: 20rpx;
- }
- .wechat-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;
- }
- /* 提示区域 */
- .notice {
- margin-top: 60rpx;
- padding: 30rpx;
- background-color: #F5F5F5;
- border-radius: 16rpx;
- }
- .notice-title {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- margin-bottom: 10rpx;
- display: block;
- }
- .notice-text {
- font-size: 24rpx;
- color: #666;
- line-height: 1.6;
- }
- /* #ifdef H5 */
- /* H5特殊样式调整 */
- @media screen and (min-width: 768px) {
- .forget-form {
- max-width: 600rpx;
- margin: 0 auto;
- }
-
- .notice {
- max-width: 600rpx;
- margin: 60rpx auto 0;
- }
- }
- /* #endif */
- /* #ifdef APP-PLUS || MP-HARMONY */
- /* APP和鸿蒙特殊样式调整 */
- .forget-container {
- padding-top: 20rpx;
- }
- .input-group {
- background-color: #f5f5f5;
- border-radius: 8rpx;
- padding: 20rpx 15rpx;
- border-bottom: none;
- margin-bottom: 20rpx;
- }
- .input {
- background-color: transparent;
- }
- .submit-btn {
- margin-top: 40rpx;
- }
- .notice {
- margin-top: 40rpx;
- border: 1rpx solid #E0E0E0;
- }
- .wechat-tip {
- margin-top: 40rpx;
- }
- /* #endif */
- </style>
|