|
@@ -0,0 +1,228 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page">
|
|
3
|
+ <div class="main" >
|
|
4
|
+ <div class="tit">找回密码</div>
|
|
5
|
+ <div class="inp-box">
|
|
6
|
+ <input
|
|
7
|
+ type="text"
|
|
8
|
+ name="phone"
|
|
9
|
+ v-model="form.phone"
|
|
10
|
+ placeholder="手机号码"
|
|
11
|
+ />
|
|
12
|
+ </div>
|
|
13
|
+
|
|
14
|
+ <div class="inp-box code-box">
|
|
15
|
+ <input
|
|
16
|
+ type="text"
|
|
17
|
+ name="code"
|
|
18
|
+ v-model="form.code"
|
|
19
|
+ placeholder="验证码"
|
|
20
|
+ />
|
|
21
|
+ <span
|
|
22
|
+ class="code-btn"
|
|
23
|
+ :class="{ dis: timeing }"
|
|
24
|
+ @click="getCode()"
|
|
25
|
+ >{{ codeStr }}</span
|
|
26
|
+ >
|
|
27
|
+ </div>
|
|
28
|
+
|
|
29
|
+ <div class="inp-box">
|
|
30
|
+ <input
|
|
31
|
+ type="password"
|
|
32
|
+ name="password"
|
|
33
|
+ v-model="form.password"
|
|
34
|
+ placeholder="请输入密码"
|
|
35
|
+ />
|
|
36
|
+ </div>
|
|
37
|
+ <div class="inp-box">
|
|
38
|
+ <input
|
|
39
|
+ type="password"
|
|
40
|
+ name="password2"
|
|
41
|
+ v-model="form.password2"
|
|
42
|
+ placeholder="确认密码"
|
|
43
|
+ />
|
|
44
|
+ </div>
|
|
45
|
+ <button class="btn" @click="submit">注册</button>
|
|
46
|
+ </div>
|
|
47
|
+ </div>
|
|
48
|
+</template>
|
|
49
|
+
|
|
50
|
+<script>
|
|
51
|
+import MyImage from "../../components/image/index";
|
|
52
|
+
|
|
53
|
+export default {
|
|
54
|
+ name: "",
|
|
55
|
+ components: { MyImage },
|
|
56
|
+ // 数据
|
|
57
|
+ data() {
|
|
58
|
+ return {
|
|
59
|
+ form: {
|
|
60
|
+ phone: "",
|
|
61
|
+ code: "",
|
|
62
|
+ password: "",
|
|
63
|
+ password2: "",
|
|
64
|
+ teamNum: "",
|
|
65
|
+ },
|
|
66
|
+ timeing: false,
|
|
67
|
+ codeStr: "发送验证码",
|
|
68
|
+ };
|
|
69
|
+ },
|
|
70
|
+
|
|
71
|
+ onLoad() {
|
|
72
|
+ uni.hideLoading();
|
|
73
|
+ },
|
|
74
|
+
|
|
75
|
+ onShow() {},
|
|
76
|
+
|
|
77
|
+ // 函数
|
|
78
|
+ methods: {
|
|
79
|
+ getCode() {
|
|
80
|
+ if (this.timeing) {
|
|
81
|
+ return;
|
|
82
|
+ }
|
|
83
|
+ let phoneReg = /^[1][1-9][0-9]{9}$/;
|
|
84
|
+ if (!this.form.phone) {
|
|
85
|
+ return this.fn.showToast("请输入手机号");
|
|
86
|
+ }
|
|
87
|
+ if (!phoneReg.test(this.form.phone)) {
|
|
88
|
+ return this.fn.showToast("手机号格式不正确");
|
|
89
|
+ }
|
|
90
|
+ // this.sendCode();
|
|
91
|
+ this.downTime();
|
|
92
|
+ },
|
|
93
|
+ sendCode() {
|
|
94
|
+ this.api.get("").then((res) => {});
|
|
95
|
+ },
|
|
96
|
+ downTime() {
|
|
97
|
+ this.timeing = true;
|
|
98
|
+ let t = 60;
|
|
99
|
+ this.codeStr = t + "s重新获取";
|
|
100
|
+ let timer = setInterval(() => {
|
|
101
|
+ t--;
|
|
102
|
+ if (t === 0) {
|
|
103
|
+ clearInterval(timer);
|
|
104
|
+ this.codeStr = "发送验证码";
|
|
105
|
+ this.timeing = false;
|
|
106
|
+ } else {
|
|
107
|
+ this.codeStr = t + "s重新获取";
|
|
108
|
+ }
|
|
109
|
+ }, 1000);
|
|
110
|
+ },
|
|
111
|
+
|
|
112
|
+ submit() {
|
|
113
|
+ console.log(this.mobile);
|
|
114
|
+ if (!this.form.phone) {
|
|
115
|
+ this.fn.showToast(`请输入手机号码`);
|
|
116
|
+ return;
|
|
117
|
+ }
|
|
118
|
+ if (!this.form.code) {
|
|
119
|
+ this.fn.showToast(`请输入验证码`);
|
|
120
|
+ return;
|
|
121
|
+ }
|
|
122
|
+
|
|
123
|
+ if (!this.form.password) {
|
|
124
|
+ this.fn.showToast(`请输入密码`);
|
|
125
|
+ return;
|
|
126
|
+ }
|
|
127
|
+
|
|
128
|
+ if (this.form.password.length < 6) {
|
|
129
|
+ this.fn.showToast(`密码最少6位`);
|
|
130
|
+ return;
|
|
131
|
+ }
|
|
132
|
+
|
|
133
|
+ if (!this.form.password2) {
|
|
134
|
+ this.fn.showToast(`请输入确认密码`);
|
|
135
|
+ return;
|
|
136
|
+ }
|
|
137
|
+
|
|
138
|
+ if (this.form.password2 !== this.form.password) {
|
|
139
|
+ this.fn.showToast(`两次密码不一致`);
|
|
140
|
+ return;
|
|
141
|
+ }
|
|
142
|
+
|
|
143
|
+ // uni.showLoading({
|
|
144
|
+ // title: "提交中",
|
|
145
|
+ // });
|
|
146
|
+ this.step = 2;
|
|
147
|
+ console.log(this.form);
|
|
148
|
+ },
|
|
149
|
+
|
|
150
|
+ },
|
|
151
|
+
|
|
152
|
+ // 数据计算
|
|
153
|
+ computed: {},
|
|
154
|
+
|
|
155
|
+ // 数据监听
|
|
156
|
+ watch: {},
|
|
157
|
+};
|
|
158
|
+</script>
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+<style lang="scss" scoped>
|
|
162
|
+.page {
|
|
163
|
+ height: 100%;
|
|
164
|
+ background-color: #fff;
|
|
165
|
+}
|
|
166
|
+.main {
|
|
167
|
+ padding-top: px(120);
|
|
168
|
+ padding-left: px(40);
|
|
169
|
+ padding-right: px(40);
|
|
170
|
+}
|
|
171
|
+.tit {
|
|
172
|
+ font-size: px(50);
|
|
173
|
+ padding-bottom: px(100);
|
|
174
|
+ text-align: center;
|
|
175
|
+ padding-bottom: px(60);
|
|
176
|
+}
|
|
177
|
+.inp-box {
|
|
178
|
+ display: flex;
|
|
179
|
+ justify-content: space-between;
|
|
180
|
+ align-items: center;
|
|
181
|
+ border-bottom: 1px solid #c3c1c2;
|
|
182
|
+ padding: px(30) 0;
|
|
183
|
+ margin-bottom: px(30);
|
|
184
|
+}
|
|
185
|
+.inp-box span {
|
|
186
|
+ font-size: px(32);
|
|
187
|
+ color: rgb(0, 188, 38);
|
|
188
|
+ border-radius: px(15);
|
|
189
|
+ border: 1px solid rgb(0, 188, 38);
|
|
190
|
+ width: px(230);
|
|
191
|
+ height: px(80);
|
|
192
|
+ text-align: center;
|
|
193
|
+ line-height: px(80);
|
|
194
|
+ flex-shrink: 0;
|
|
195
|
+ margin-left: px(30);
|
|
196
|
+}
|
|
197
|
+.inp-box input {
|
|
198
|
+ width: 100%;
|
|
199
|
+}
|
|
200
|
+.inp-box .dis {
|
|
201
|
+ color: #999;
|
|
202
|
+ border-color: #999;
|
|
203
|
+ pointer-events: none;
|
|
204
|
+}
|
|
205
|
+.btn {
|
|
206
|
+ margin-top: px(120);
|
|
207
|
+ color: #fff;
|
|
208
|
+ background-color: rgb(0, 188, 38);
|
|
209
|
+ font-size: px(44);
|
|
210
|
+}
|
|
211
|
+.code-box {
|
|
212
|
+ display: flex;
|
|
213
|
+ justify-content: space-between;
|
|
214
|
+ align-items: center;
|
|
215
|
+ .code-btn {
|
|
216
|
+ width: px(220);
|
|
217
|
+ flex-shrink: 0;
|
|
218
|
+ font-size: px(40);
|
|
219
|
+ padding: 0 px(10);
|
|
220
|
+ border: none;
|
|
221
|
+ &.dis {
|
|
222
|
+ border-color: #f1f1f1;
|
|
223
|
+ color: #999;
|
|
224
|
+ }
|
|
225
|
+ }
|
|
226
|
+}
|
|
227
|
+
|
|
228
|
+</style>
|