ForgotPassword.vue
7.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<template>
<div class="auth-bg">
<div class="auth-container">
<!-- 返回按钮 -->
<div class="back-button" @click="goBack">
<img src="/zuo.svg" alt="goBack" class="input-icon-svg" />
</div>
<!-- 头部Logo与标题 -->
<div class="auth-header">
<div class="logo">
<img src="/newLogo.png" alt="Logo" class="logo-img" />
</div>
<h1 class="auth-title">{{ $t("forgotPasswordV2.title") }}</h1>
<p class="auth-subtitle">{{ $t("forgotPasswordV2.subtitle") }}</p>
</div>
<!-- 忘记密码表单 -->
<el-form
:model="form"
:rules="rules"
ref="forgotFormRef"
class="forgot-form"
label-position="top"
@submit.prevent="onSubmit"
>
<el-form-item prop="email" :label="$t('forgotPasswordV2.emailLabel')">
<el-input
v-model="form.email"
:placeholder="$t('forgotPasswordV2.emailPlaceholder')"
clearable
>
<template #prefix>
<img src="/youxiang.svg" alt="email" class="input-icon-svg" />
</template>
</el-input>
</el-form-item>
<el-form-item>
<el-button
type="primary"
class="submit-btn"
@click="onSubmit"
:loading="authStore.loading"
round
native-type="button"
>
{{ $t("forgotPasswordV2.sendCodeBtn") }}
</el-button>
</el-form-item>
</el-form>
<!-- 步骤说明 -->
<div class="steps-info">
<h4>{{ $t("forgotPasswordV2.stepsTitle") }}</h4>
<ol>
<li>{{ $t("forgotPasswordV2.step1") }}</li>
<li>{{ $t("forgotPasswordV2.step2") }}</li>
<li>{{ $t("forgotPasswordV2.step3") }}</li>
</ol>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, computed, onMounted } from "vue";
import { useRouter, useRoute } from "vue-router";
import { useI18n } from "vue-i18n";
import { ElMessage, type FormInstance, type FormRules } from "element-plus";
import { useAuthStore } from "@/stores/auth";
const router = useRouter();
const route = useRoute();
const { t } = useI18n();
const authStore = useAuthStore();
const emit = defineEmits(["switch-to-login"]);
const forgotFormRef = ref<FormInstance>();
const form = reactive({
email: "",
});
// 从路由 query 参数中获取邮箱并回显
onMounted(() => {
const emailFromQuery = route.query.email as string;
if (emailFromQuery) {
form.email = emailFromQuery;
}
});
const rules = computed<FormRules>(() => ({
email: [
{
required: true,
message: "请输入邮箱地址",
trigger: "blur",
},
{
validator: (_rule: any, value: string, callback: any) => {
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (value && !emailRegex.test(value)) {
callback(new Error("邮箱格式不正确"));
} else {
callback();
}
},
trigger: "blur",
},
],
}));
const onSubmit = async () => {
try {
authStore.clearError();
if (!forgotFormRef.value) return;
const valid = await forgotFormRef.value.validate();
if (!valid) return;
const result = await authStore.sendResetCode({ email: form.email });
if (result.success) {
ElMessage.success(t("forgotPasswordV2.codeSent"));
// 成功后直接回登录
setTimeout(() => {
emit("switch-to-login");
if (router.currentRoute.value.path !== "/auth") {
router.push("/auth");
}
}, 1200);
} else {
ElMessage.error(t("forgotPasswordV2.sendFailed"));
}
} catch (e) {
console.error("发送验证码错误:", e);
ElMessage.error(t("forgotPasswordV2.sendFailed"));
}
};
const goBack = () => {
emit("switch-to-login");
if (router.currentRoute.value.path !== "/auth") {
router.push("/auth");
}
};
</script>
<style scoped lang="scss">
.auth-bg {
min-height: 100vh;
background: var(--color-bg);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.auth-container {
background: var(--color-bg);
border-radius: 20px;
padding: 40px 32px 32px 32px;
max-width: 400px;
width: 90vw;
box-shadow:
0 8px 32px rgba(0, 0, 0, 0.08),
0 4px 16px rgba(0, 0, 0, 0.04);
position: relative;
z-index: 1;
}
.back-button {
position: absolute;
top: 16px;
left: 16px;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
&:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(0, 0, 0, 0.15);
transform: translateY(-1px);
}
.input-icon-svg {
width: 16px;
height: 16px;
opacity: 0.8;
}
}
.auth-header {
text-align: center;
margin-bottom: 24px;
}
.logo {
width: auto;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 6px;
background: transparent;
border-radius: 0;
box-shadow: none;
overflow: visible;
}
.logo-img {
width: auto;
height: 100%;
object-fit: contain;
border-radius: 0;
}
.auth-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 8px;
color: #1e6fff;
line-height: 1.3;
}
.auth-subtitle {
font-size: 14px;
color: #909399;
margin-bottom: 8px;
}
.forgot-form {
margin-bottom: 24px;
:deep(.el-form-item__label) {
color: #606266;
font-weight: 500;
font-size: 14px;
margin-bottom: 8px;
padding: 0;
line-height: 1.5;
&::before {
color: #f56c6c;
}
}
:deep(.el-input__prefix) {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
.input-icon-svg {
margin-left: 10px;
margin-right: 6px;
display: block;
}
}
:deep(.el-input.is-focus .el-input__prefix .input-icon-svg) {
opacity: 1;
}
:deep(.el-input__inner) {
height: 42px;
font-size: 16px;
border-radius: 12px;
background: #ffffff !important;
color: #606266 !important;
transition: all 0.3s ease;
&::placeholder {
color: #c0c4cc;
font-size: 16px;
}
}
}
.submit-btn {
width: 100%;
height: 44px;
font-size: 16px;
font-weight: 500;
border-radius: 12px;
background: linear-gradient(135deg, #3399ff 0%, #00c9ff 100%);
border: none;
box-shadow: 0 2px 8px rgba(51, 153, 255, 0.3);
&:hover {
box-shadow: 0 4px 12px rgba(51, 153, 255, 0.4);
}
&:active {
box-shadow: 0 1px 4px rgba(51, 153, 255, 0.3);
}
}
.steps-info {
background: rgba(30, 111, 255, 0.05);
border-radius: 12px;
padding: 16px;
font-size: 14px;
border: 1px solid rgba(30, 111, 255, 0.1);
h4 {
color: #1e6fff;
margin: 0 0 12px 0;
font-size: 16px;
font-weight: 600;
}
ol {
margin: 0;
padding-left: 20px;
color: #606266;
li {
margin-bottom: 8px;
line-height: 1.5;
&:last-child {
margin-bottom: 0;
}
}
}
}
.input-icon-svg {
width: 18px;
height: 18px;
object-fit: contain;
flex-shrink: 0;
opacity: 0.6;
transition: opacity 0.3s ease;
vertical-align: middle;
}
</style>